From 0e7d84874c1d4cc88556150a4a364e927f64e5d4 Mon Sep 17 00:00:00 2001 From: bl00dymarie Date: Thu, 14 Mar 2024 14:28:09 +0100 Subject: [PATCH] Add more padding to button if home is almost empty --- components/Home.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/components/Home.js b/components/Home.js index af02576..7baea96 100644 --- a/components/Home.js +++ b/components/Home.js @@ -76,6 +76,8 @@ const Home = ({ navigate, setDate }) => { {prediction} )} + + {!isFertilityTrackingEnabled && } @@ -114,6 +116,9 @@ const styles = StyleSheet.create({ color: 'white', fontSize: Sizes.subtitle, }, + largePadding: { + padding: Spacing.large, + }, }) Home.propTypes = {