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.
 
 
 

69 lines
1.9 KiB

import React from 'react';
import { createStackNavigator } from "@react-navigation/stack";
import RainSharingDataScreen from '../screens/RainSharingDataScreen';
import RiverFloodSharingDataScreen from '../screens/RiverFloodSharingDataScreen';
import SharingFloodZonesScreen from '../screens/SharingFloodZonesScreen';
import PluviometerSharingDataScreen from '../screens/PluviometerSharingDataScreen';
import SharingDataScreen from '../screens/SharingDataScreen';
import SharingDataNavigator from './SharingDataNavigator';
const Stack = createStackNavigator();
function SharingDataOptionsNavigator() {
return (
<Stack.Navigator initialRouteName="SharingData">
<Stack.Screen
name="Voltar"
component={SharingDataNavigator}
options={{
headerShown: false
}}
/>
<Stack.Screen
name="RainSharingData"
component={RainSharingDataScreen}
options={{
title: "Enviar uma informação",
headerStyle: {
backgroundColor: "white",
},
}}
/>
<Stack.Screen
name="FloodSharingData"
component={SharingFloodZonesScreen}
options={{
title: "Enviar uma informação",
headerStyle: {
backgroundColor: "white",
},
}}
/>
<Stack.Screen
name="PluviometerSharingData"
component={PluviometerSharingDataScreen}
options={{
title: "Enviar uma informação",
headerStyle: {
backgroundColor: "white",
},
}}
/>
<Stack.Screen
name="RiverFloodData"
component={RiverFloodSharingDataScreen}
options={{
title: "Enviar uma informação",
headerStyle: {
backgroundColor: "white",
},
}}
/>
</Stack.Navigator>
);
}
export default SharingDataOptionsNavigator;