-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b8b4b92
commit 5a4c27e
Showing
2 changed files
with
53 additions
and
4 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,53 @@ | ||
import { View, Text} from "react-native"; | ||
import React from 'react'; | ||
import { View, Text, Button, StyleSheet, TouchableOpacity} from "react-native"; | ||
|
||
export default function Perfil(){ | ||
return ( | ||
|
||
<View className="w-full h-full bg-zinc-950 items flex items-center justify-center"> | ||
<><View style={styles.container}> | ||
<Text className="text-white">Perfil</Text> | ||
</View> | ||
) | ||
} | ||
<View> | ||
<TouchableOpacity> | ||
<Text>Editar perfil</Text> | ||
</TouchableOpacity> | ||
</View> | ||
<View> | ||
<TouchableOpacity> | ||
<Text>Definições gerais</Text> | ||
</TouchableOpacity> | ||
</View> | ||
<View> | ||
<TouchableOpacity> | ||
<Text>Idioma</Text> | ||
</TouchableOpacity> | ||
</View> | ||
<View> | ||
<TouchableOpacity> | ||
<Text>Nos Avalie</Text> | ||
</TouchableOpacity> | ||
</View> | ||
<View> | ||
<TouchableOpacity> | ||
<Text>Sair</Text> | ||
</TouchableOpacity> | ||
</View> | ||
|
||
|
||
</> | ||
|
||
); | ||
} | ||
|
||
const styles = StyleSheet.create({ | ||
container: { | ||
flex: 1, | ||
paddingTop: 39, | ||
backgroundColor: '#09090B', | ||
alignItems:'center' | ||
}, | ||
button: { | ||
backgroundColor:'red', | ||
padding: 40, | ||
}, | ||
}); |