-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.style.js
48 lines (47 loc) · 833 Bytes
/
App.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
import {StyleSheet} from 'react-native';
export default StyleSheet.create({
selectCont: {
marginBottom: 20,
},
title: {
fontSize: 14,
fontWeight: '700',
},
mainContainer: {
flex: 1,
padding: 8,
},
itemTitle: {
fontSize: 14,
fontWeight: '700',
marginVertical: 5,
},
picker: {
borderColor: 'gray',
borderWidth: 1,
marginTop: 4,
borderRadius: 4,
},
cardView: {
minHeight: 60,
marginVertical: 2,
padding: 8,
elevation: 0.1,
shadowColor: 'rgba(0, 0, 0, 0.5)',
borderRadius: 4,
flexGrow: 1,
},
itemView: {
flexDirection: 'row',
justifyContent: 'space-between',
},
itemText: {
fontSize: 14,
fontWeight: '600',
},
growCenterCont: {
flexGrow: 1,
justifyContent: 'center',
alignItems: 'center',
},
});