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.
100 lines
2.7 KiB
100 lines
2.7 KiB
import React from "react";
|
|
import { createBottomTabNavigator } from "@react-navigation/bottom-tabs";
|
|
import { MaterialCommunityIcons } from "@expo/vector-icons";
|
|
|
|
import AccountNavigator from "./AccountNavigator";
|
|
import FeedNavigator from "./FeedNavigator";
|
|
import MessagesNavigator from "./MessagesNavigator";
|
|
import ForecastNavigator from "./ForecastNavigator";
|
|
import NewListingButton from "./NewListingButton";
|
|
import SharingDataOptionsNavigator from "./SharingDataOptionsNavigator";
|
|
import { NavigationContainer } from "@react-navigation/native";
|
|
import { createStackNavigator } from "@react-navigation/stack";
|
|
import Abbout from "../screens/Abbout";
|
|
import colors from "../config/colors";
|
|
|
|
const Tab = createBottomTabNavigator();
|
|
const Stack = createStackNavigator();
|
|
|
|
function tabScreens() {
|
|
return (
|
|
<Tab.Navigator
|
|
style={{ backgroundColor: "black" }}
|
|
tabBarOptions={{
|
|
activeTintColor: colors.primary,
|
|
}}
|
|
>
|
|
<Tab.Screen
|
|
name="Home"
|
|
component={FeedNavigator}
|
|
options={{
|
|
tabBarIcon: ({ color, size }) => (
|
|
<MaterialCommunityIcons name="home" color={color} size={size} />
|
|
),
|
|
}}
|
|
/>
|
|
<Tab.Screen
|
|
name="SharingData"
|
|
component={SharingDataOptionsNavigator}
|
|
options={({ navigation }) => ({
|
|
tabBarButton: () => (
|
|
<NewListingButton
|
|
onPress={() =>
|
|
navigation.navigate("SharingData", {
|
|
screen: "Voltar",
|
|
initial: false,
|
|
})
|
|
}
|
|
/>
|
|
),
|
|
tabBarIcon: ({ color, size }) => (
|
|
<MaterialCommunityIcons
|
|
name="plus-circle"
|
|
color={color}
|
|
size={size}
|
|
/>
|
|
),
|
|
})}
|
|
/>
|
|
|
|
<Tab.Screen
|
|
name="Perfil"
|
|
component={AccountNavigator}
|
|
options={{
|
|
tabBarIcon: ({ color, size }) => (
|
|
<MaterialCommunityIcons name="account" color={color} size={size} />
|
|
),
|
|
}}
|
|
/>
|
|
</Tab.Navigator>
|
|
);
|
|
}
|
|
|
|
const AppNavigator = () => (
|
|
<NavigationContainer independent={true}>
|
|
<Stack.Navigator>
|
|
<Stack.Screen
|
|
name="tab"
|
|
options={{ headerShown: false }}
|
|
component={tabScreens}
|
|
/>
|
|
|
|
<Stack.Screen
|
|
name="Abbout"
|
|
component={Abbout}
|
|
options={{
|
|
title: "Sobre",
|
|
tabBarIcon: ({ color, size }) => (
|
|
<MaterialCommunityIcons
|
|
name="information-outline"
|
|
color={color}
|
|
size={size}
|
|
/>
|
|
),
|
|
}}
|
|
/>
|
|
</Stack.Navigator>
|
|
</NavigationContainer>
|
|
);
|
|
|
|
export default AppNavigator;
|