diff options
author | Justin Shillingford <jgs272@cornell.edu> | 2020-06-26 11:04:41 -0400 |
---|---|---|
committer | Justin Shillingford <jgs272@cornell.edu> | 2020-06-26 11:04:41 -0400 |
commit | d9ff793c9b85c1454a3fef4bba88fe186af3cf65 (patch) | |
tree | 654959aa9ccbd542cf54dc3f7b88966a97ad1da2 | |
parent | eb3823053d5dea4df44ae063df1e2feb511666ca (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> |