This commit is contained in:
Milan Paunovic
2024-09-28 08:59:05 +02:00
parent 7ab2fe7906
commit 91717c699d
10 changed files with 613 additions and 158 deletions

View File

@ -15,7 +15,7 @@ const MyProfile = () => {
const { mutateAsync: updateUserData } = useUpdateUserData();
return (
<View>
<ScrollView style={{paddingBottom: 100, flex: 1}}>
<View style={styles.card}>
<Text text70>Your Profile</Text>
<View row spread paddingH-15 centerV marginV-15>
@ -71,7 +71,7 @@ const MyProfile = () => {
</Text>
<TextField text70 placeholder="Time Zone" style={styles.txtBox} />
</View>
</View>
</ScrollView>
);
};