-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
45 lines (40 loc) · 1.11 KB
/
App.js
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
import { Text, View } from "react-native";
import React from "react";
import { NavigationContainer } from "@react-navigation/native";
import { createMaterialBottomTabNavigator } from "@react-navigation/material-bottom-tabs";
import Icon from "react-native-vector-icons/FontAwesome5"; // Import from FontAwesome5
import Home from "./src/screens/Home";
import Form from "./src/screens/Form";
const Tab = createMaterialBottomTabNavigator();
const AppNavigation = () => {
return (
<Tab.Navigator>
<Tab.Screen
name="Home"
component={Home}
options={{
tabBarIcon: ({ color }) => (
<Icon name="home" size={20} color={color} /> // Use FontAwesome5
),
}}
/>
<Tab.Screen
name="Form"
component={Form}
options={{
tabBarIcon: ({ color }) => (
<Icon name="wpforms" size={20} color={color} /> // Use FontAwesome5
),
}}
/>
</Tab.Navigator>
);
};
const App = () => {
return (
<NavigationContainer>
<AppNavigation />
</NavigationContainer>
);
};
export default App;