compose StackNavigator
export const App = StackNavigator( { SignIn: { screen: SignIn }, }, ); const MainApp = (props) => { return ( <View> <App {...props}/> <GeolocationController/> </View> ) }