Skip to content

Commit d848338

Browse files
committedJan 2, 2025
recipe filtering update
1 parent 52739ea commit d848338

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎app/(tabs)/favorites.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ export default function Favorites() {
9797
return (
9898
<LinearGradient
9999
colors={['#833ab4', '#fd1d1d', '#fcb045']}
100-
style={{ height: Dimensions.get('window').height, flex: 1 }}>
100+
style={{ height: Dimensions.get('window').height, flex: 1, paddingTop: 10 }}>
101101
{loading && (
102102
<View className="flex-1 items-center justify-center">
103103
<LottieView
@@ -146,7 +146,7 @@ export default function Favorites() {
146146
<Pressable
147147
onPress={() => Alert.alert('Recipe Details', item.recipe)}
148148
style={{ flexDirection: 'row', alignItems: 'center' }}>
149-
<Text style={{ flex: 1, color: 'white', fontSize: 16, fontWeight: '600' }}>
149+
<Text style={{ flex: 1, color: 'white', fontSize: 14, fontWeight: '600' }}>
150150
{item.recipe}
151151
</Text>
152152
</Pressable>

0 commit comments

Comments
 (0)
Please sign in to comment.