-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
32 lines (31 loc) · 937 Bytes
/
App.tsx
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
import React from 'react'
import { Text, View } from 'react-native'
import { NavigationContainer } from '@react-navigation/native'
import { createNativeStackNavigator } from '@react-navigation/native-stack'
import Home from './Home'
import Information from './Info'
const Stack = createNativeStackNavigator()
const App = () => {
return (
<NavigationContainer>
<Stack.Navigator>
<Stack.Screen component={Home} name="Home"
options={{
title: "Home",
headerTintColor: "#fff",
headerStyle: {
backgroundColor: "#323232",
}
}} />
<Stack.Screen component={Information} name="Information" options={{
title: "Information",
headerTintColor: "#fff",
headerStyle: {
backgroundColor: "#323232",
}
}} />
</Stack.Navigator>
</NavigationContainer>
)
}
export default App