nreact native setState code example
Example 1: lifecycle method react
INITIALIZATION= setup props and state
MOUNTING= constructor->componentWillMount->render->componentDidMount//Birth
UPDATE= shouldComponentUpdate->componentWillUpdate->render
->componentDidUpdate //Growth
UNMOUNTING= componentWillUnmount //Death
Example 2: react native setstate object
this.setState({
lang1:{
...this.state.lang1,
name: "myExample"
}
})
Example 3: set state
setState({ searchTerm: event.target.value })