|
@ -3,14 +3,14 @@ import { StyleSheet, View, Text } from "react-native"; |
|
|
|
|
|
|
|
|
import colors from "../config/colors"; |
|
|
import colors from "../config/colors"; |
|
|
import Screen from "../components/Screen"; |
|
|
import Screen from "../components/Screen"; |
|
|
import { AntDesign } from "@expo/vector-icons"; |
|
|
|
|
|
import { dimensions } from "../config/dimensions"; |
|
|
import { dimensions } from "../config/dimensions"; |
|
|
|
|
|
import { FontAwesome5 } from '@expo/vector-icons'; |
|
|
|
|
|
|
|
|
function AccountScreen({ navigation }) { |
|
|
function AccountScreen({ navigation }) { |
|
|
return ( |
|
|
return ( |
|
|
<Screen style={styles.screen}> |
|
|
<Screen style={styles.screen}> |
|
|
<View style={styles.container}> |
|
|
<View style={styles.container}> |
|
|
<AntDesign name="warning" size={60} color="black" /> |
|
|
|
|
|
|
|
|
<FontAwesome5 name="laptop-code" size={60} color="black" /> |
|
|
<Text style={{ fontSize: dimensions.text.header, fontWeight: "bold" }}> |
|
|
<Text style={{ fontSize: dimensions.text.header, fontWeight: "bold" }}> |
|
|
Em construção... |
|
|
Em construção... |
|
|
</Text> |
|
|
</Text> |
|
|