diff options
-rw-r--r-- | App.tsx | 14 |
1 files changed, 3 insertions, 11 deletions
@@ -62,17 +62,9 @@ const App = () => { accessibilityLabel="Forgot password button" /> </View> - {/* <View style={styles.start}> */} - <TouchableOpacity style={styles.start}> - <Text style={styles.startText}>Let's Start!</Text> - </TouchableOpacity> - {/* <Button - onPress={() => Alert.alert("My favorite Girl Scout Cookies are taggalongs!")} - title="Let's Start!" - color='#FFFFFF' - accessibilityLabel="Let's start button" - /> */} - {/* </View> */} + <TouchableOpacity style={styles.start} onPress={() => Alert.alert("My favorite Girl Scout Cookies are taggalongs!")}> + <Text style={styles.startText}>Let's Start!</Text> + </TouchableOpacity> <Text style={styles.newUser}> New to tagg? <Text style={styles.getStarted} onPress={() => Alert.alert("I get the tagg flip it and tumble it.")}>Get started!</Text> </Text> |