Created
July 31, 2019 17:56
-
-
Save Yassir4/faf33038493993a307af465edc29580f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import {View, Text, TouchableOpacity} from 'react-native'; | |
import {Navigation} from 'react-native-navigation'; | |
import styles from './styles'; | |
const pushScreen = props => { | |
const {componentId} = props; | |
Navigation.push(componentId, { | |
component: { | |
name: 'PushedScreen', | |
}, | |
}); | |
}; | |
const Home = props => { | |
return ( | |
<View style={styles.container}> | |
<View style={styles.buttonsSection}> | |
<TouchableOpacity | |
onPress={() => pushScreen(props)} | |
style={styles.buttonWrapper}> | |
<Text style={styles.buttonText}>Push Screen</Text> | |
</TouchableOpacity> | |
<TouchableOpacity style={styles.buttonWrapper}> | |
<Text style={styles.buttonText}>open a modal</Text> | |
</TouchableOpacity> | |
</View> | |
</View> | |
); | |
}; | |
export default Home; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment