From 66c7737993e05b551dac860a1bc0ea6df1949e5c Mon Sep 17 00:00:00 2001 From: moist-webDev Date: Fri, 9 Jun 2023 18:46:44 -0400 Subject: [PATCH] update home placeholder --- routes/Home.tsx | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/routes/Home.tsx b/routes/Home.tsx index f94fcc3..9a6ed36 100644 --- a/routes/Home.tsx +++ b/routes/Home.tsx @@ -5,9 +5,14 @@ import { color } from '@rneui/themed/dist/config'; export default function Home({theme}:any){ + const st = style(theme); + + return ( - - This is home + + + NEWS FEED COMING SOON! + ) } @@ -16,9 +21,17 @@ export default function Home({theme}:any){ const style = (theme:any) => { return StyleSheet.create({ container: { + flex: 1, + justifyContent: 'center', + marginBottom: 180, + width: '100%', }, text: { color: theme.text, - } + opacity: 0.5, + }, + row: { + flexDirection: 'row', + }, }); } \ No newline at end of file