-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
87 lines (78 loc) · 2.06 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import React from "react";
import { NavigationContainer } from "@react-navigation/native";
import { createStackNavigator } from "@react-navigation/stack";
import { PixelRatio, StyleSheet, Image, View, Text } from "react-native";
import * as Routes from "./src/routes/Index";
const Stack = createStackNavigator();
export default function App() {
return (
<NavigationContainer>
<Stack.Navigator
initialRouteName="Login"
screenOptions={{
headerShown: true,
headerStyle: {
backgroundColor: "#ACB6B8",
},
headerTitleStyle: {
fontSize: PixelRatio.getFontScale() * 24,
fontWeight: "bold",
},
}}
>
<Stack.Screen
name="Login"
component={Routes.Login}
options={{ headerShown: false }}
/>
<Stack.Screen
name="IndexDrawer"
component={Routes.Routes}
options={{ headerShown: false }}
/>
<Stack.Screen
name="HistRelPrat"
component={Routes.HistRelPrat}
options={{
title: "Histórico de entregas",
}}
/>
<Stack.Screen
name="RelatorioEdit"
component={Routes.RelatorioEdit}
options={{
title: "Editar Relatório",
}}
/>
<Stack.Screen
name="EditPerfil"
component={Routes.PerfilEdit}
options={{
title: "Editar Perfil",
}}
/>
<Stack.Screen
name="CursoFeedback"
component={Routes.CursoFeedback}
options={{
title: "Editar Perfil",
}}
/>
<Stack.Screen
name="CursoHistorico"
component={Routes.CursoHistorico}
options={{
title: "Editar Perfil",
}}
/>
</Stack.Navigator>
</NavigationContainer>
);
}
const styles = StyleSheet.create({
title: {
fontSize: PixelRatio.getFontScale() * 24,
fontWeight: "bold",
justifyContent: "center",
},
});