Skip to content

Instantly share code, notes, and snippets.

@alexkuttig
Last active September 7, 2019 19:33
Show Gist options
  • Save alexkuttig/fe5f3caac99ac159454726e73a5483e7 to your computer and use it in GitHub Desktop.
Save alexkuttig/fe5f3caac99ac159454726e73a5483e7 to your computer and use it in GitHub Desktop.
const Tab = createBottomTabNavigator();
export default function App() {
return (
<NavigationNativeContainer>
<Tab.Navigator>
<Tab.Screen name="Home" screen={HomeScreen} />
<Tab.Screen name="Settings" screen={SettingsScreen} />
</Tab.Navigator>
</NavigationNativeContainer>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment