-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstyles.js
101 lines (87 loc) · 1.77 KB
/
styles.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
import {
StyleSheet } from 'react-native';
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10,
},
instructions: {
textAlign: 'center',
color: '#333333',
marginBottom: 5,
},
outer: {
flex: 1
},
arView: {
flex: 1
},
buttons: {
height: 80,
width: 80,
paddingTop: 20,
paddingBottom: 20,
marginTop: 10,
marginBottom: 10,
backgroundColor: "#f0f8ff",
borderRadius: 10,
borderWidth: 1,
borderColor: "#00000000"
},
navBar: {
flex: 1,
flexDirection: "row",
justifyContent: "space-around",
position: "absolute",
left: 0,
right: 0,
bottom: 77
},
itemBar: {
flex: 1,
alignSelf: "flex-end",
position: "absolute",
top: 100,
// paddingTop: 85,
paddingBottom: 85,
padding: 20
},
eachButton: {
paddingBottom: 20
},
itemButton: {
resizeMode: "cover",
},
savingIcon: {
flex: 1,
alignSelf: "center",
justifyContent: "flex-end"
},
savingMessage : {
textAlign: 'center',
fontFamily: "Arial",
fontWeight: 'bold',
fontSize: 20,
color: "#fff"
},
searchingIcon: {
flex: 1,
alignSelf: "center",
justifyContent: "center"
},
backgroundImage: {
position: 'absolute',
top: 5,
left: 5,
bottom: 5,
right: 5,
}
});
export default styles