diff options
Diffstat (limited to 'mobile/screens/Form1.js')
| -rw-r--r-- | mobile/screens/Form1.js | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/mobile/screens/Form1.js b/mobile/screens/Form1.js index 92eec30..963bde2 100644 --- a/mobile/screens/Form1.js +++ b/mobile/screens/Form1.js @@ -3,10 +3,10 @@ import {Text, Alert, AppRegistry, Button, StyleSheet, View, TextInput } from 're export default class Form1 extends Component { _onPressButton1() { - //const {navigation} = this.props; - //const coordinates = navigation.getparam('coordinates'); - var coordinates = this.coordinates ? coordinates : []; - Alert.alert("Thank you for your response.") + const { navigation } = this.props; + const coordinates = navigation.getParam('coordinates'); + //var coordinates = this.coordinates ? coordinates : []; + Alert.alert("Thank you for your response."); fetch('https://helpthehome-qa.herokuapp.com/mobilerequest', { method: 'POST', headers: { @@ -69,6 +69,12 @@ export default class Form1 extends Component { title="Submit!" /> </View> + <View style={{padding: 40}}> + <Button + onPress={() => this.props.navigation.navigate('GreetingPage')} + title="Go Back" + /> + </View> </View> ); } |
