First of all, I have a basic level in english. So I hope you understand.
Is the rerender of a child component in react native different in react? Let me give you an example:
class App extends React.Component{
constructor(props) {
super(props);
}
render(){
return(
<ChildComponent />
)
}
componentDidMount() {
this.setState({test:'test'})
}
}
this in react rerender ChildComponent once, but in React Native ChildComponent not rerender only have your initial render. Why?
ps: ChildComponent have just a div in React and Text in React Native.