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

@ -1,6 +1,7 @@
import { Image, StyleSheet, Platform } from 'react-native';
import ParallaxScrollView from '@/components/default/ParallaxScrollView';
import { ThemedText, ThemedView } from '@/components/theme';
import StatusList from '@/components/status/StatusList';
const HomeScreen = () => {
return (
@ -14,7 +15,9 @@ const HomeScreen = () => {
</ThemedText>
}
>
<ThemedView style={styles.titleContainer}></ThemedView>
<ThemedView style={styles.titleContainer}>
<StatusList />
</ThemedView>
</ParallaxScrollView>
);
};

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',