-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.js
64 lines (61 loc) · 1.29 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
import { StyleSheet } from 'react-native';
const backgroundcolour = '#7ba396';
const styles = StyleSheet.create({
container: {
flex: 1,
flexDirection: "column",
backgroundColor: backgroundcolour,
alignItems: 'center',
justifyContent: 'center',
},
emptylistcomponent: {
marginTop: '50%',
marginLeft: '20%',
marginRight: '20%'
},
emptylisttext: {
fontFamily: 'sans-serif-light',
fontSize: 20
},
imagehome: {
width: '90%',
height: '80%',
marginHorizontal: '5%'
},
imagelist: {
width: '90%',
height: 150,
},
innercontainer1: {
flex: 1.3,
flexDirection: "column",
backgroundColor: backgroundcolour,
alignItems: 'stretch',
justifyContent: 'space-around'
},
innercontainer2: {
flex: 1,
flexDirection: "column",
backgroundColor: backgroundcolour,
alignItems: 'center',
justifyContent: 'center'
},
list: {
backgroundColor: '#fff',
width: '100%'
},
listcontainer: {
flexDirection: 'row',
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'space-around',
marginBottom: 5
},
operators: {
flexDirection: "row",
justifyContent: 'space-between',
marginTop: 5,
marginBottom: 10
}
});
export default styles;