Created
July 8, 2017 06:57
-
-
Save abhitheawesomecoder/a1aaae61d3649c75105b140abb3d546e to your computer and use it in GitHub Desktop.
How to add Animated Modal to your React Native App
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, { Component } from 'react'; | |
import { | |
AppRegistry, | |
StyleSheet, | |
Text, | |
View, | |
TouchableOpacity, | |
Button | |
} from 'react-native'; | |
import Modal from 'react-native-modal' | |
import FCM from 'react-native-fcm'; | |
export default class RNF extends Component { | |
constructor(props) { | |
super(props); | |
this.state = { | |
isModalVisible: false | |
} | |
} | |
_showModal = () => this.setState({ isModalVisible: true }) | |
_hideModal = () => this.setState({ isModalVisible: false }) | |
render () { | |
return ( | |
<View style={styles.container}> | |
<TouchableOpacity onPress={this._showModal}> | |
<Text>Show Modal</Text> | |
</TouchableOpacity> | |
<Modal isVisible={this.state.isModalVisible}> | |
<View style={styles.modalContainer}> | |
<Text>Hello!</Text> | |
<Button | |
title="Hide Modal" | |
color="#841584" | |
onPress={this._hideModal} /> | |
</View> | |
</Modal> | |
</View> | |
) | |
} | |
} | |
const styles = StyleSheet.create({ | |
container: { | |
flex: 1, | |
justifyContent: 'center', | |
alignItems: 'center', | |
backgroundColor: '#F5FCFF', | |
}, | |
modalContainer: { | |
alignSelf: "center", | |
justifyContent: 'center', | |
alignItems: 'center', | |
height: 100, | |
width: 200, | |
backgroundColor: '#F5FCFF', | |
}, | |
welcome: { | |
fontSize: 20, | |
textAlign: 'center', | |
margin: 10, | |
}, | |
instructions: { | |
textAlign: 'center', | |
color: '#333333', | |
marginBottom: 5, | |
}, | |
}); | |
AppRegistry.registerComponent('RNF', () => RNF); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment