-
Notifications
You must be signed in to change notification settings - Fork 0
/
SideMenu.style.js
74 lines (73 loc) · 1.44 KB
/
SideMenu.style.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
import {
Dimensions
} from "react-native";
export default {
container: {
backgroundColor: 'white',
flex: 1
},
navItemStyle: {
padding: 10
},
navSectionStyle: {
backgroundColor: 'lightgrey'
},
sectionHeadingStyle: {
flex: 1,
flexDirection: 'row',
paddingVertical: 10,
paddingHorizontal: 5,
},
sectionHeadingStyle1: {
backgroundColor: '#F7931E',
flex: 1,
flexDirection: 'row',
alignItems: "center",
paddingHorizontal: 15,
height: Dimensions.get("window").height / 4.2,
},
sectionHeadingStyle2: {
backgroundColor: '#30AEE2',
flex: 1,
flexDirection: 'row',
alignItems: "center",
paddingHorizontal: 15,
height: Dimensions.get("window").height / 4.1,
},
sectionHeadingStyle3: {
backgroundColor: '#F7CF0B',
flex: 1,
flexDirection: 'row',
alignItems: "center",
paddingHorizontal: 15,
height: Dimensions.get("window").height / 4.1,
},
sectionHeadingStyle4: {
backgroundColor: '#D31DD8',
flex: 1,
flexDirection: 'row',
alignItems: "center",
paddingHorizontal: 15,
height: Dimensions.get("window").height / 4.2,
},
footerContainer: {
padding: 20,
backgroundColor: 'lightgrey'
},
active: {
fontSize:20,
color: 'black'
},
inactive: {
fontSize:20,
color: 'white'
},
activeIcon: {
color: 'black',
marginRight:10
},
inactiveIcon: {
color: 'white',
marginRight:10
},
};