diff options
author | Justin Shillingford <jgs272@cornell.edu> | 2020-06-26 11:04:41 -0400 |
---|---|---|
committer | Justin Shillingford <jgs272@cornell.edu> | 2020-06-29 14:25:38 -0400 |
commit | ea9dd5a851bddf91f265404525239d3e52ecb5aa (patch) | |
tree | 448434b49ab89c9db63376e002c24eb4da618663 | |
parent | 6e0d91e5b7d70a5c9e75488f51e096aba61e2ec2 (diff) |
Removed commented code and re-added alert
-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> |