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
You can also pass the navigation prop from the parent to the child directly by doing this:
renderRow(user) { return ; }
This will allow you to use react-navigation's navigate method in ListName.
Info also from this page: https://reactnavigation.org/docs/en/connecting-navigation-prop.html