()
| 25 | } |
| 26 | |
| 27 | function handleSetShowHome() { |
| 28 | if (showHome !== "true") { |
| 29 | ChangeNavigationService.setShowHome({ showHome: "true", appStartData }) |
| 30 | .then(() => console.log(`Sucesso! ${showHome} ${appStartData}`)) |
| 31 | .catch((err) => console.log(err)); |
| 32 | setShowHome("true"); |
| 33 | handleNavHome(); |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | return ( |
| 38 | <View style={styles.container}> |
nothing calls this directly
no test coverage detected