mirror of
https://github.com/urosran/cally.git
synced 2025-11-26 16:34:54 +00:00
fix Grocery page, add Reminders context
This commit is contained in:
@ -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} />
|
||||
|
||||
Reference in New Issue
Block a user