fix Grocery page, add Reminders context

This commit is contained in:
ivic00
2024-08-31 18:19:51 +02:00
parent f8dd152eeb
commit ff9e94e392
8 changed files with 107 additions and 56 deletions

View File

@ -13,6 +13,15 @@ const GroceryList = () => {
return (
<View>
<FlatList
ItemSeparatorComponent={() => (
<View
style={{
height: 1.5,
backgroundColor: "#e0e0e0",
marginHorizontal: 15,
}}
/>
)}
data={groceries}
renderItem={({ item }) => (
<GroceryItem item={item} handleItemApproved={updateGroceryItem} />