Closed ddthuan87 closed 5 years ago
I can investigate further if you can provide an MCVE that reproduces the issue, in the form of an Expo Snack or a react-native init
'd repo hosted on GitHub.
I can investigate further if you can provide an MCVE that reproduces the issue, in the form of an Expo Snack or a
react-native init
'd repo hosted on GitHub.
OKAY, i will push it, thank for reply
Hi, I have same issue ,How do you solve in the end?
Do you have any update?
Do you have any update?
mình không dùng nó nữa cậu ạ
Did you have another good solution?
Did you have another good solution?
are u using this lib for what?
Hi! Thank for the Lib!
### Description ### I'm writing a GA tracking for my app.
Before adding GA, Im using "Navigating without the navigation prop" for top level app https://reactnavigation.org/docs/en/navigating-without-navigation-prop.html
export default class App extends Component { render() { return (
}
import { reduxifyNavigator } from 'react-navigation-redux-helpers'; import { connect } from 'react-redux'; import Router from '../config/routes';
const App = reduxifyNavigator(Router, "root");
const mapStateToProps = (state) => ({ state: state.nav, }); const AppWithNavigationState = connect(mapStateToProps)(App);
export default AppWithNavigationState;
import WrapperRouter from './app/googleAnalytics/routerWrapper';
const store = getStore();
export default class App extends Component { render() { return (
}
componentDidMount(){ this.props.navigation.addListener('willFocus', () => { this._handleDefaultLoad(); }); }