From 9b0abd536705df70c016bebe78241df721da2d40 Mon Sep 17 00:00:00 2001 From: bl00dymarie Date: Mon, 18 Mar 2024 19:03:21 +0100 Subject: [PATCH] Add one small info text to the bottom of customization index --- components/settings/customization/index.js | 30 ++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/components/settings/customization/index.js b/components/settings/customization/index.js index 27284b3..733a62d 100644 --- a/components/settings/customization/index.js +++ b/components/settings/customization/index.js @@ -1,10 +1,12 @@ import React, { useEffect, useState } from 'react' -import { Alert, Pressable } from 'react-native' +import { Alert, Pressable, StyleSheet, View } from 'react-native' import { useTranslation } from 'react-i18next' +import AppIcon from '../../common/app-icon' import AppPage from '../../common/app-page' import AppSwitch from '../../common/app-switch' import AppText from '../../common/app-text' +import { Colors, Spacing, Typography } from '../../../styles' import TemperatureSlider from './temperature-slider' import Segment from '../../common/segment' import TrackingCategorySwitch from '../../common/tracking-category-switch' @@ -308,7 +310,7 @@ const Settings = () => { - + {cervixText} { /> + + + + {labels.preOvu.title} + + {labels.preOvu.note} + ) } export default Settings + +const styles = StyleSheet.create({ + icon: { + marginRight: Spacing.base, + }, + line: { + flexDirection: 'row', + alignItems: 'center', + }, + title: { + ...Typography.subtitle, + }, +})