Pass navigation.navigate to Child Component

后端 未结 6 1494
轻奢々
轻奢々 2021-02-09 16:32

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

6条回答
  •  我在风中等你
    2021-02-09 17:14

    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();
    

提交回复
热议问题