-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
68 lines (65 loc) · 1.81 KB
/
App.tsx
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
import { createBottomTabNavigator } from "@react-navigation/bottom-tabs";
import { NavigationContainer } from "@react-navigation/native";
import React from "react";
import { Provider } from "react-redux";
import PlaylistsScreen from "./screens/PlaylistsScreen";
import HomeScreen from "./screens/HomeScreen";
import PlayerProvider from "./components/PlayerProvider";
import { store, persistor } from "./reducers/persistReducer";
import { PersistGate } from "redux-persist/integration/react";
import { AntDesign, MaterialIcons } from "@expo/vector-icons";
const Tab = createBottomTabNavigator();
const MyTabs: React.FC<{}> = () => {
return (
<NavigationContainer>
<Tab.Navigator
tabBarOptions={{
style: {
position: "absolute",
zIndex: 1110,
},
keyboardHidesTabBar: true,
}}
>
<Tab.Screen
name="Home"
component={HomeScreen}
options={{
tabBarIcon: ({ focused }) => (
<AntDesign
name="home"
size={24}
color={focused ? "blue" : "black"}
/>
),
}}
/>
<Tab.Screen
name="Playlists"
component={PlaylistsScreen}
options={{
tabBarIcon: ({ focused }) => (
<MaterialIcons
name="featured-play-list"
size={24}
color={focused ? "blue" : "black"}
/>
),
}}
/>
</Tab.Navigator>
</NavigationContainer>
);
};
const App = () => {
return (
<Provider store={store}>
<PersistGate loading={null} persistor={persistor}>
<PlayerProvider>
<MyTabs />
</PlayerProvider>
</PersistGate>
</Provider>
);
};
export default App;