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