skip to Main Content

React Native : Navigate to a screen "nested inside BottomTabNavigator" from firebase push notificaiton click

This is a part of my BottomNavigator code in App.js. const Bottom = createBottomTabNavigator(); return ( <Bottom.Navigator tabBarOptions={...}> <Bottom.Screen name="ScreenA" component={ScreenA} options={...} /> <Bottom.Screen name="ScreenB" component={ScreenB} options={...} /> <Bottom.Screen name="ScreenC" component={ScreenC} options={...} /> <Bottom.Screen name="Chat" component={Chat} options={({navigation}) => ({ tabBarLabel:…

VIEW QUESTION

Firebase The token was not issued by the given issuers

Environment: Ionic 6, Firebase 9 and Server on php, (include Firebase Admin SDK for PHP https://firebase-php.readthedocs.io/). const firebaseConfig = { apiKey: "KEY", authDomain: "DOMAIN.firebaseapp.com", projectId: "PROJECT_ID", storageBucket: "STORAGE.appspot.com", messagingSenderId: "SENDER_ID", appId: "APP_ID", measurementId: "M_ID" }; // Initialize Firebase const app…

VIEW QUESTION
Back To Top
Search