Suppose I have two screens: HomeScreen & LocationScreen
Steps: Firstly I navigated from HomeScreen(state={location: 'A'}) to LocationScreen.
Changed location in LocationScreen(state={location: 'B'})
Pass it to HomeScreen and change location from A to B.
Now , HomeScreen has View dependent on location state.
So my question is , how can I update the view content of home screen as the content is coming from network response after the location been updated?