Just stopping now bc PC needs to reboot.

This commit is contained in:
2025-03-11 14:40:34 -05:00
parent cfcf118275
commit 0cdfd1a0eb
9 changed files with 872 additions and 15 deletions

View File

@ -105,12 +105,14 @@ const ProfileScreen = () => {
return (
<ScrollView contentContainerStyle={styles.scrollContainer}>
<ThemedView style={styles.container}>
<ProfileAvatar
url={profile.avatar_url}
size={120}
onUpload={handleAvatarUpload}
disabled={updating}
/>
<ThemedView style={styles.avatarContainer}>
<ProfileAvatar
url={profile.avatar_url}
size={120}
onUpload={handleAvatarUpload}
disabled={updating}
/>
</ThemedView>
{profile.provider && (
<ThemedText style={styles.providerText}>
@ -160,6 +162,9 @@ const styles = StyleSheet.create({
padding: 16,
alignItems: 'center',
},
avatarContainer: {
marginVertical: 20,
},
loadingContainer: {
flex: 1,
justifyContent: 'center',