Created
February 1, 2017 05:51
-
-
Save janicduplessis/eb985dc3accfd5982c77761be692e395 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
class AddRemoveExample extends React.Component { | |
state = { | |
open: false, | |
}; | |
componentWillUpdate() { | |
LayoutAnimation.easeInEaseOut(); | |
} | |
_onPressAddView = () => { | |
this.setState((state) => ({open: !state.open})); | |
}; | |
render() { | |
return ( | |
<View style={styles.container}> | |
<TouchableOpacity onPress={this._onPressAddView}> | |
<View style={styles.button}> | |
<Text>Add view</Text> | |
</View> | |
</TouchableOpacity> | |
<View style={{height:this.state.open ? 100 : 50, backgroundColor: 'blue'}} /> | |
<View style={{ transform: [{translateY: 25}], backgroundColor: 'red', height: 50, marginBottom: 100 }} /> | |
</View> | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment