()
| 6 | import LifeStatus from "../../Components/Common/LifeStatus"; |
| 7 | |
| 8 | export default function Start() { |
| 9 | const navigation = useNavigation(); |
| 10 | |
| 11 | const handleNavAppExplanation = () => { |
| 12 | navigation.navigate("AppExplanation"); |
| 13 | }; |
| 14 | |
| 15 | return ( |
| 16 | <View style={styles.container}> |
| 17 | <ScrollView style={styles.scroll} showsVerticalScrollIndicator={false}> |
| 18 | <View style={{ alignItems: "center" }}> |
| 19 | <Image |
| 20 | source={require("../../assets/icons/logo3.png")} |
| 21 | style={styles.logo} |
| 22 | /> |
| 23 | <LifeStatus /> |
| 24 | <Text style={styles.description}> |
| 25 | Vamos transformar sua vida {"\n"} em um jogo, buscando sempre {"\n"}{" "} |
| 26 | o melhor nível. |
| 27 | </Text> |
| 28 | <DefaultButton |
| 29 | buttonText={"Continuar"} |
| 30 | handlePress={handleNavAppExplanation} |
| 31 | width={250} |
| 32 | height={50} |
| 33 | /> |
| 34 | </View> |
| 35 | </ScrollView> |
| 36 | </View> |
| 37 | ); |
| 38 | } |
| 39 | |
| 40 | const styles = StyleSheet.create({ |
| 41 | container: { |
nothing calls this directly
no outgoing calls
no test coverage detected