-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
117 lines (111 loc) · 4.05 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
// App.js
import 'react-native-gesture-handler';
import 'react-native-reanimated';
import React from 'react';
import { NavigationContainer } from '@react-navigation/native';
import { createStackNavigator } from '@react-navigation/stack';
import { createDrawerNavigator } from '@react-navigation/drawer';
import { useColorScheme, StyleSheet, View } from 'react-native';
import Settings from './views/Settings';
import Icon from 'react-native-vector-icons/Ionicons';
import ItemList from './views/ItemList';
import CreateItem from './views/CreateItem';
import EditItem from './views/EditItem';
import DrawerContent from './components/DrawerContent';
const Stack = createStackNavigator();
const Drawer = createDrawerNavigator();
const StackNavigator = () => {
const colorScheme = useColorScheme();
return (
<View
style={[styles.container, { backgroundColor: colorScheme === 'dark' ? '#000' : '#fff' }]}
>
<Stack.Navigator
initialRouteName="Machines"
screenOptions={{
headerStyle: {
backgroundColor: colorScheme === 'dark' ? '#333' : '#fff',
},
headerTintColor: colorScheme === 'dark' ? '#fff' : '#000',
headerTitleStyle: {
fontWeight: 'bold',
},
cardStyle: {
backgroundColor: colorScheme === 'dark' ? '#333' : '#fff',
},
cardOverlayEnabled: false,
}}
>
<Stack.Screen
name="Machines"
component={ItemList}
options={({ navigation }) => ({
title: 'Machines',
headerLeft: () => (
<Icon.Button
name="menu"
size={25}
backgroundColor={colorScheme === 'dark' ? '#333' : '#fff'}
color={colorScheme === 'dark' ? '#fff' : '#000'}
onPress={() => navigation.openDrawer()}
/>
),
})}
/>
<Stack.Screen
name="Add Machine"
component={CreateItem}
options={{ title: 'Add Machine' }}
/>
<Stack.Screen
name="Edit Machine"
component={EditItem}
options={{ title: 'Edit Machine' }}
/>
<Stack.Screen
name="Settings"
component={Settings}
options={{ title: 'Settings' }}
/>
</Stack.Navigator>
</View>
);
};
export default function App() {
const colorScheme = useColorScheme();
return (
<View
style={[styles.container, { backgroundColor: colorScheme === 'dark' ? '#000' : '#fff' }]}
>
<NavigationContainer style={{backgroundColor: "#333"}}>
<Drawer.Navigator
drawerContent={(props) => <DrawerContent {...props} />}
screenOptions={{
drawerStyle: {
backgroundColor: colorScheme === 'dark' ? '#333' : '#fff',
width: 200,
},
drawerActiveTintColor: colorScheme === 'dark' ? '#fff' : '#000',
drawerInactiveTintColor: colorScheme === 'dark' ? '#ccc' : '#888',
sceneContainerStyle: {
backgroundColor: colorScheme === 'dark' ? '#333' : '#fff',
},
drawerType: 'front', // Try 'slide' or 'back' to see if it resolves the flicker
// overlayColor: 'transparent', // Remove the overlay color to avoid flicker
}}
>
<Drawer.Screen
name="Home"
component={StackNavigator}
options={{ headerShown: false }}
/>
</Drawer.Navigator>
</NavigationContainer>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
},
});