-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
36 lines (32 loc) · 972 Bytes
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import { StyleSheet, Text, View } from 'react-native';
import { createBottomTabNavigator } from '@react-navigation/bottom-tabs';
import { NavigationContainer } from '@react-navigation/native';
import Screen1 from './Views/ManHinh1';
import Screen2 from './Views/ManHinh2';
const Tab = createBottomTabNavigator();
const screenOptions = {
tabBarShowLabel: true,
tabBarLabelStyle: { fontSize: 14, fontWeight: 'bold' },
headerShown: false,
tabBarStyle: {
backgroundColor: '#fff',
}
}
export default function App() {
return (
<NavigationContainer>
<Tab.Navigator screenOptions={screenOptions} initialRouteName='Screen1'>
<Tab.Screen name="Screen1" component={Screen1} />
<Tab.Screen name="Screen2" component={Screen2} />
</Tab.Navigator>
</NavigationContainer>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});