React native – How Can I pass parameters to another initial page when a state is changed?
I want to check the camera and microphone permission at the beginning, and pass the permission status to permiss page if permissions are not granted. here is the app.tsx import AppNavigation from './navigation/appNavigation'; function App() { return AppNavigation(); } export…