Skip to content

Instantly share code, notes, and snippets.

@dedSyn4ps3
Created November 6, 2022 00:47
Show Gist options
  • Save dedSyn4ps3/84a0a6209de0233b19e1692c74649a07 to your computer and use it in GitHub Desktop.
Save dedSyn4ps3/84a0a6209de0233b19e1692c74649a07 to your computer and use it in GitHub Desktop.
const PrimaryScreen = () => {
const theme = useTheme();
return (
<View style={{ flex: 1, backgroundColor: theme.colors.background }}>
<ScrollView>
<ImageCard image={abstract} title="Shopping List" subtitle="Needed Items" />
<ReminderCard title="** REMINDER **" subtitle="Get Toilet Paper!" />
<ShoppingList />
</ScrollView>
</View>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment