From 66fcf022695283268e80855365f10262ae6ec907 Mon Sep 17 00:00:00 2001 From: MohamedBassem Date: Sat, 14 Sep 2024 17:08:40 +0100 Subject: feature(mobile): Add settings page for configuring the theme --- apps/mobile/app/dashboard/(tabs)/settings.tsx | 33 ++++++++++++++++++++++----- 1 file changed, 27 insertions(+), 6 deletions(-) (limited to 'apps/mobile/app/dashboard/(tabs)') diff --git a/apps/mobile/app/dashboard/(tabs)/settings.tsx b/apps/mobile/app/dashboard/(tabs)/settings.tsx index 18d3d243..db118df8 100644 --- a/apps/mobile/app/dashboard/(tabs)/settings.tsx +++ b/apps/mobile/app/dashboard/(tabs)/settings.tsx @@ -1,7 +1,8 @@ import { useEffect } from "react"; -import { Text, View } from "react-native"; +import { Pressable, Text, View } from "react-native"; import { Slider } from "react-native-awesome-slider"; import { useSharedValue } from "react-native-reanimated"; +import { Link } from "expo-router"; import { Button } from "@/components/ui/Button"; import CustomSafeAreaView from "@/components/ui/CustomSafeAreaView"; import { Divider } from "@/components/ui/Divider"; @@ -9,6 +10,7 @@ import PageTitle from "@/components/ui/PageTitle"; import { useSession } from "@/lib/session"; import useAppSettings from "@/lib/settings"; import { api } from "@/lib/trpc"; +import { ChevronRight } from "lucide-react-native"; export default function Dashboard() { const { logout } = useSession(); @@ -36,18 +38,35 @@ export default function Dashboard() { - + {isSettingsLoading ? "Loading ..." : settings.address} - - + {isLoading ? "Loading ..." : data?.email} -