React Navigation on tab change

后端 未结 5 1236
清歌不尽
清歌不尽 2021-02-08 12:58

Without using Redux, how do I detect a tab change with a react navigation tab navigator?

I know I need to somehow use onNavigationStateChange but I can\'t figure out

5条回答
  •  一生所求
    2021-02-08 13:47

    Actually, you can add an special listener in your component

    componentDidMount () {
        this.props.navigation.addListener('willFocus', (route) => { //tab changed });
    } 
    

提交回复
热议问题