Resetting the navigation stack for the home screen (React Navigation and React Native)

前端 未结 13 2399
终归单人心
终归单人心 2020-11-29 23:49

I\'ve got a problem with the navigation of React Navigation and React Native. It is about resetting navigation and returning to the home screen.

I\'ve build a StackN

13条回答
  •  一生所求
    2020-11-30 00:10

    I found this way to go while using @react-navigation Bashirpour's Answer. However, while trying out Functional components where you already have navigation in props here is a neat way to write reset Stack action:

    props.navigation.reset({
         index: 0,
         routes: [{ name: 'Dashboard' }]
    })
    

提交回复
热议问题