From ac4019e5d1b7c3d48005217f14a10a888a38401e Mon Sep 17 00:00:00 2001 From: Sanidhya Kumar Verma Date: Wed, 4 Sep 2024 11:57:15 +0000 Subject: [PATCH] profile screen ui implemented --- app/(root)/(tabs)/profile.tsx | 56 +++++++++++++++++++++++++++++++++-- 1 file changed, 53 insertions(+), 3 deletions(-) diff --git a/app/(root)/(tabs)/profile.tsx b/app/(root)/(tabs)/profile.tsx index 4d44dfd..e6f14f4 100644 --- a/app/(root)/(tabs)/profile.tsx +++ b/app/(root)/(tabs)/profile.tsx @@ -1,10 +1,60 @@ -import { Text } from "react-native"; +import { useUser } from "@clerk/clerk-expo"; +import { Image, ScrollView, Text, View } from "react-native"; import { SafeAreaView } from "react-native-safe-area-context"; +import { InputField } from "@/components/input-field"; + const Profile = () => { + const { user } = useUser(); + return ( - - Profile + + + My profile + + + + + + + + + + + + + + + ); };