feat: add change photo button

This commit is contained in:
Vinicius Souza 2024-10-26 15:12:57 -03:00
parent 7a26c9da62
commit 255f845965

View file

@ -1,5 +1,5 @@
import { ScrollView, TouchableOpacity } from 'react-native';
import { Center, Text, VStack } from '@gluestack-ui/themed';
import { ScrollView } from 'react-native';
import { ScreenHeader } from '@components/ScreenHeader';
import { UserPhoto } from '@components/UserPhoto';
@ -16,6 +16,12 @@ export function Profile() {
alt="imagem de perfil"
size="xl"
/>
<TouchableOpacity>
<Text color="$green500" fontFamily="$heading" fontSize="$md" mt="$2" mb="$8">
Alterar foto
</Text>
</TouchableOpacity>
</Center>
</ScrollView>
</VStack>