generated from sajclarke/reactnative-firebase-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
140 lines (119 loc) · 3.57 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
* @flow strict-local
*/
// In App.js in a new project
import * as React from 'react';
import { Button, View, Text } from 'react-native';
import { NavigationContainer } from '@react-navigation/native';
import Ionicons from 'react-native-vector-icons/Ionicons'
import { createMaterialTopTabNavigator } from '@react-navigation/material-top-tabs';
import { createBottomTabNavigator } from '@react-navigation/bottom-tabs';
import { createStackNavigator } from '@react-navigation/stack';
import TodoScreen from './src/screens/Todos'
function HomeScreen({ navigation }) {
return (
<View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
<Text>Home Screen</Text>
<Button
title="Go to Details"
onPress={() => navigation.navigate('Details')}
/>
</View>
);
}
function DetailsScreen({ navigation }) {
return (
<View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
<Text>Details Screen</Text>
<Button
title="Go to Details... again"
onPress={() => navigation.push('Details')}
/>
<Button title="Go to Home" onPress={() => navigation.navigate('Home')} />
<Button title="Go back" onPress={() => navigation.goBack()} />
</View>
);
}
// function TodoScreen() {
// return (
// <View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
// <Text>Todos</Text>
// </View>
// )
// }
function MapScreen() {
return (
<View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
<Text>Map</Text>
</View>
)
}
function SettingsScreen() {
return (
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
<Text>Settings!</Text>
</View>
);
}
const Tab = createBottomTabNavigator();
const RootStack = createStackNavigator();
const HomeStack = createStackNavigator();
const HomeTabNav = createMaterialTopTabNavigator()
const HomeTabs = () => (
<HomeTabNav.Navigator>
<HomeTabNav.Screen name="Home" component={HomeScreen} />
<HomeTabNav.Screen name="Map" component={MapScreen} />
</HomeTabNav.Navigator>
)
const HomeGroup = () => (
<HomeStack.Navigator initialRouteName="Home">
<HomeStack.Screen name="Home" component={HomeTabs} />
<HomeStack.Screen name="Details" component={DetailsScreen} />
</HomeStack.Navigator>
)
const BottomTab = () => (
<Tab.Navigator>
<Tab.Screen
name="Home"
component={HomeGroup}
options={{
// tabBarLabel: 'Main',
tabBarIcon: ({ focused, color, size }) => {
return <Ionicons name="home" size={size} color={color} />;
},
}}
/>
<Tab.Screen
name="Todos"
component={TodoScreen}
options={{
tabBarLabel: 'Tasks',
tabBarIcon: ({ focused, color, size }) => {
return <Ionicons name="checkmark-circle-outline" size={size} color={color} />;
},
}}
/>
<Tab.Screen name="Settings" component={SettingsScreen}
options={{
// tabBarLabel: 'Main',
tabBarIcon: ({ focused, color, size }) => {
return <Ionicons name="settings-outline" size={size} color={color} />;
},
}} />
</Tab.Navigator>
)
function App() {
return (
<NavigationContainer>
<RootStack.Navigator initialRouteName="Home">
<RootStack.Screen name="Home" component={BottomTab} />
{/* <Stack.Screen name="Details" component={DetailsScreen} /> */}
</RootStack.Navigator>
</NavigationContainer>
);
}
export default App;