This repository has been archived by the owner on Jul 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
85 lines (71 loc) · 1.96 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
import React, {useEffect} from 'react';
import 'react-native-gesture-handler';
import { NavigationContainer } from '@react-navigation/native';
import { CardStyleInterpolators, createStackNavigator } from '@react-navigation/stack';
import Home from './components/Home';
import Search from './components/Search';
import Help from './components/Help';
import Settings from './components/Settings';
const Stack = createStackNavigator();
import { createStore } from 'redux';
import { Provider, useSelector } from 'react-redux';
const initialState = {
appInfo: {
searchEngine: "百度",
animations: true,
animationDirection: true,
disableCookies: false,
disableJS: false
}
}
const reducer = (state = initialState, action) => {
switch(action.type) {
case "CHANGE_APPINFO":
return {appInfo: action.value}
}
return state
}
const store = createStore(reducer);
const NavigationContainerComponent = () => {
const Stack = createStackNavigator();
const appInfo = useSelector((state) => state.appInfo);
return (
<NavigationContainer>
<Stack.Navigator
screenOptions={ appInfo.animationDirection ? {
} : {
cardStyleInterpolator: CardStyleInterpolators.forHorizontalIOS
}}
initialRouteName={Home}>
<Stack.Screen
name="Home"
component={Home}
options={{ headerShown: false }}
/>
<Stack.Screen
name="Search"
component={Search}
options={{ headerShown: false }}
/>
<Stack.Screen
name="Help"
component={Help}
options={{ headerShown: false }}
/>
<Stack.Screen
name="Settings"
component={Settings}
options={{ headerShown: false }}
/>
</Stack.Navigator>
</NavigationContainer>
);
}
const App = () => {
return (
<Provider store={store}>
<NavigationContainerComponent/>
</Provider>
);
}
export default App;