Skip to content

Instantly share code, notes, and snippets.

@artyorsh
Created October 23, 2019 12:23
Show Gist options
  • Save artyorsh/d5e02a3ccd1f34920c6dd09d12a86940 to your computer and use it in GitHub Desktop.
Save artyorsh/d5e02a3ccd1f34920c6dd09d12a86940 to your computer and use it in GitHub Desktop.
The second navigator for bottom tabs (Binding React Navigation 5 to Eva Design System)
import React from 'react';
import { createStackNavigator } from '@react-navigation/stack';
import { ProfileScreen } from '@app-scenes/profile';
import { AppRoute } from './app-routes';
const Stack = createStackNavigator();
export const ProfileNavigator = (): React.ReactElement => (
<Stack.Navigator headerMode='none'>
<Stack.Screen name={AppRoute.PROFILE} component={ProfileScreen}/>
</Stack.Navigator>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment