Just stopping now bc PC needs to reboot.
This commit is contained in:
		@@ -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>
 | 
			
		||||
  );
 | 
			
		||||
};
 | 
			
		||||
 
 | 
			
		||||
@@ -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',
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user