aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/app/dashboard/(tabs)/lists.tsx
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-03-29 14:17:36 +0000
committerMohamedBassem <me@mbassem.com>2024-03-29 14:17:36 +0000
commit26b53e2ccc00befd182c4af05ab52fc439be7535 (patch)
tree6697b977daecd0e43be15d9e34dd9f8cbf30472b /apps/mobile/app/dashboard/(tabs)/lists.tsx
parent2cfb7cb27f3825b8c8656d8b8649bd22fa52bfbf (diff)
downloadkarakeep-26b53e2ccc00befd182c4af05ab52fc439be7535.tar.zst
mobile(android): Getting the android app ready for submission
Diffstat (limited to 'apps/mobile/app/dashboard/(tabs)/lists.tsx')
-rw-r--r--apps/mobile/app/dashboard/(tabs)/lists.tsx9
1 files changed, 5 insertions, 4 deletions
diff --git a/apps/mobile/app/dashboard/(tabs)/lists.tsx b/apps/mobile/app/dashboard/(tabs)/lists.tsx
index e0ed8489..0350ebd2 100644
--- a/apps/mobile/app/dashboard/(tabs)/lists.tsx
+++ b/apps/mobile/app/dashboard/(tabs)/lists.tsx
@@ -1,9 +1,10 @@
import { useEffect, useState } from "react";
-import { FlatList, Pressable, SafeAreaView, Text, View } from "react-native";
+import { FlatList, Pressable, Text, View } from "react-native";
import { Link } from "expo-router";
import { api } from "@/lib/trpc";
import { ChevronRight } from "lucide-react-native";
import PageTitle from "@/components/ui/PageTitle";
+import CustomSafeAreaView from "@/components/ui/CustomSafeAreaView";
export default function Lists() {
const [refreshing, setRefreshing] = useState(false);
@@ -48,7 +49,7 @@ export default function Lists() {
);
return (
- <SafeAreaView>
+ <CustomSafeAreaView>
<FlatList
ListHeaderComponent={
<PageTitle title="Lists" />
@@ -62,7 +63,7 @@ export default function Lists() {
<Text className="text-lg">
{l.item.logo} {l.item.name}
</Text>
- <ChevronRight />
+ <ChevronRight color="rgb(0, 122, 255)" />
</Pressable>
</Link>
)}
@@ -70,6 +71,6 @@ export default function Lists() {
refreshing={refreshing}
onRefresh={onRefresh}
/>
- </SafeAreaView>
+ </CustomSafeAreaView>
);
}