Pass navigation.navigate to Child Component

后端 未结 6 1493
轻奢々
轻奢々 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 16:59

    Pass all props like

    Form

    {...this.props}
    

    here

    is my child components

    other wise.

    import { withNavigation } from 'react-navigation';
    

    Then in the end

    export default withNavigation();
    

提交回复
热议问题