At this page React Native State on React Native docs, we have the following statement:
props are set by the parent and they are fixed throughout the lifetime of a component.
But, at this page React State and Lifecycle on React docs, we have the following statement:
Because this.props and this.state may be updated asynchronously, you should not rely on their values for calculating the next state.
Where is my misunderstandment? For me the Lifecycle of a component would end when the component is removed from the DOM. So given the first statement i could access the this.props values at any part of my component not only on the render method, but this is not what the second statement says.