Is there a way to completely refresh an entire scene in react-native without updating the state or forcing a re-render?
For example:
refreshButton(){
Actions.refresh()
}
P.S: I am using react-native-router-flux as my navigator. I did try Actions.refresh({key: "page_name"})
but it did not work.
more info here