|
@ -1,12 +1,14 @@ |
|
|
import React from 'react'; |
|
|
import React from 'react'; |
|
|
|
|
|
|
|
|
import { createStackNavigator } from "@react-navigation/stack"; |
|
|
import { createStackNavigator } from "@react-navigation/stack"; |
|
|
import AppNavigator from './AppNavigator'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import RainSharingDataScreen from '../screens/RainSharingDataScreen'; |
|
|
import RainSharingDataScreen from '../screens/RainSharingDataScreen'; |
|
|
import RiverFloodSharingDataScreen from '../screens/RiverFloodSharingDataScreen'; |
|
|
import RiverFloodSharingDataScreen from '../screens/RiverFloodSharingDataScreen'; |
|
|
import SharingFloodZonesScreen from '../screens/SharingFloodZonesScreen'; |
|
|
import SharingFloodZonesScreen from '../screens/SharingFloodZonesScreen'; |
|
|
import PluviometerSharingDataScreen from '../screens/PluviometerSharingDataScreen'; |
|
|
import PluviometerSharingDataScreen from '../screens/PluviometerSharingDataScreen'; |
|
|
|
|
|
import SharingDataScreen from '../screens/SharingDataScreen'; |
|
|
|
|
|
import SharingDataNavigator from './SharingDataNavigator'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const Stack = createStackNavigator(); |
|
|
const Stack = createStackNavigator(); |
|
@ -16,7 +18,7 @@ function SharingDataOptionsNavigator() { |
|
|
<Stack.Navigator initialRouteName="SharingData"> |
|
|
<Stack.Navigator initialRouteName="SharingData"> |
|
|
<Stack.Screen |
|
|
<Stack.Screen |
|
|
name="Voltar" |
|
|
name="Voltar" |
|
|
component={AppNavigator} |
|
|
|
|
|
|
|
|
component={SharingDataNavigator} |
|
|
options={{ |
|
|
options={{ |
|
|
headerShown: false |
|
|
headerShown: false |
|
|
}} |
|
|
}} |
|
|