React Navigation Preventing Going back to loading screen, reset not working

后端 未结 4 635
無奈伤痛
無奈伤痛 2021-01-21 13:32

I have a React Native application which I have implemented. Currently the app opens up on a loading screen which after mounting checks the firebase.auth().onAuthStateChang

4条回答
  •  春和景丽
    2021-01-21 13:46

    Write the code below ,

       static navigationOptions = {
           header:null
         };
    

    Just before

    render() {
         return (
    

    on the NotesScreen,There will not be any back button.

提交回复
热议问题