forked from cemaden-educacao/WPD-MobileApp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
2.0 KiB
91 lines
2.0 KiB
import React from "react";
|
|
import { createStackNavigator } from "@react-navigation/stack";
|
|
import AccountScreen from "../screens/AccountScreen";
|
|
import PluviometerRegisterScreen from '../screens/PluviometerRegisterScreen';
|
|
import MapFormScreen from "../screens/MapFormScreen";
|
|
import Abbout from "../screens/Abbout";
|
|
import ActivateInstitution from "../screens/ActivateInstitution";
|
|
import UpdatePassword from "../screens/UpdatePassword";
|
|
import EditUserData from "../screens/EditUserData";
|
|
|
|
const Stack = createStackNavigator();
|
|
|
|
const AccountNavigator = () => (
|
|
<Stack.Navigator initialRouteName="Perfil">
|
|
<Stack.Screen
|
|
name="Perfil"
|
|
component={AccountScreen}
|
|
options={{
|
|
title: "Perfil",
|
|
headerStyle: {
|
|
backgroundColor: "white",
|
|
},
|
|
}}
|
|
/>
|
|
|
|
<Stack.Screen
|
|
name="PluviometerRegister"
|
|
component={PluviometerRegisterScreen}
|
|
options={{
|
|
title: "",
|
|
headerStyle: {
|
|
backgroundColor: "white",
|
|
},
|
|
}}
|
|
/>
|
|
<Stack.Screen
|
|
name="Abbout"
|
|
component={Abbout}
|
|
options={{
|
|
title: "",
|
|
headerStyle: {
|
|
backgroundColor: "white",
|
|
},
|
|
}}
|
|
/>
|
|
<Stack.Screen
|
|
name="ActivateInstitution"
|
|
component={ActivateInstitution}
|
|
options={{
|
|
title: "",
|
|
headerStyle: {
|
|
backgroundColor: "white",
|
|
},
|
|
}}
|
|
/>
|
|
<Stack.Screen
|
|
name="UpdatePassword"
|
|
component={UpdatePassword}
|
|
options={{
|
|
title: "",
|
|
headerStyle: {
|
|
backgroundColor: "white",
|
|
},
|
|
}}
|
|
/>
|
|
<Stack.Screen
|
|
name="EditUserData"
|
|
component={EditUserData}
|
|
options={{
|
|
title: "",
|
|
headerStyle: {
|
|
backgroundColor: "white",
|
|
},
|
|
}}
|
|
/>
|
|
|
|
|
|
<Stack.Screen
|
|
name="FormMap"
|
|
component={MapFormScreen}
|
|
options={{
|
|
title: "Voltar",
|
|
headerStyle: {
|
|
backgroundColor: "white",
|
|
},
|
|
}}
|
|
/>
|
|
</Stack.Navigator>
|
|
);
|
|
|
|
export default AccountNavigator;
|