Building an app using react-navigation. I have a parent component that pulls from firebase and renders data in a listview. The listview render component \'ListName\' has an onRo
Base on React Navigation: https://reactnavigation.org/docs/en/connecting-navigation-prop.html
You just need to import withNavigation into child component only.
import { withNavigation } from 'react-navigation';
then export:
export default withNavigation();