Skip to content

Instantly share code, notes, and snippets.

@janicduplessis
Created February 1, 2017 05:51
Show Gist options
  • Save janicduplessis/eb985dc3accfd5982c77761be692e395 to your computer and use it in GitHub Desktop.
Save janicduplessis/eb985dc3accfd5982c77761be692e395 to your computer and use it in GitHub Desktop.
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