This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import * as React from 'react'; | |
| import {Text} from 'react-native'; | |
| import {NavigationContainer} from '@react-navigation/native'; | |
| import {createBottomTabNavigator} from '@react-navigation/bottom-tabs'; | |
| // Our Tabs | |
| function Tab1() { | |
| return <Text>Tab 1</Text>; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'react-native-gesture-handler'; | |
| import * as React from 'react'; | |
| import {Text, Button} from 'react-native'; | |
| import {NavigationContainer} from '@react-navigation/native'; | |
| import {createDrawerNavigator} from '@react-navigation/drawer'; | |
| // Our Screens | |
| function Screen1({navigation}) { | |
| return ( | |
| <> |
OlderNewer