From c82c5b592c68504737b47692e9797bdae408a91e Mon Sep 17 00:00:00 2001 From: Maarten Date: Thu, 8 Aug 2024 13:19:20 +0200 Subject: [PATCH] Update listing style --- app/(tabs)/explore.tsx | 8 ++++---- app/(tabs)/map.tsx | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app/(tabs)/explore.tsx b/app/(tabs)/explore.tsx index bdb5ff2..a19f5ff 100644 --- a/app/(tabs)/explore.tsx +++ b/app/(tabs)/explore.tsx @@ -116,7 +116,7 @@ export default function ExploreScreen() { renderItem={(item: any, index: any) => ( viewItem( item )}> - {item.name} + {item.name} )} /> @@ -167,7 +167,7 @@ const styles = StyleSheet.create( { marginTop: 25, }, listContainer: { - marginTop: 10, + marginTop: 20, paddingBottom: 50 }, listItem: { @@ -176,8 +176,8 @@ const styles = StyleSheet.create( { gap: 8, flexDirection: 'row', alignItems: 'center', - paddingBottom: 10, - marginBottom: 10, + paddingBottom: 20, + marginBottom: 20, borderBottomWidth: 1, borderBottomColor: '#f2f2f2', }, diff --git a/app/(tabs)/map.tsx b/app/(tabs)/map.tsx index 1ad9add..1b5adc8 100644 --- a/app/(tabs)/map.tsx +++ b/app/(tabs)/map.tsx @@ -171,8 +171,8 @@ const styles = StyleSheet.create( { justifyContent: 'space-between', flexDirection: 'row', alignItems: 'center', - paddingBottom: 10, - marginBottom: 10, + paddingBottom: 20, + marginBottom: 20, borderBottomWidth: 1, borderBottomColor: '#f2f2f2', },