
import { Navigation } from "react-native-navigation";
constructor(props) {
super(props);
Navigation.events().bindComponent(this);
}
It was added in 2.0.2406
@geirr thank you. It's working
Thanks.
Is there anyway to refresh bottom tabs in "react-native-navigation": "^1.1.316"?
this.listeners = [];
this.listeners.push(Navigation.events().registerComponentDidAppearListener((event)=>{
alert("hello");
}));
I am getting an error when I call event() method. Do I need to upgrade package?
Most helpful comment
It was added in 2.0.2406