-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathHorizontalDatePickerStyle.js
52 lines (50 loc) · 1.04 KB
/
HorizontalDatePickerStyle.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
import { StyleSheet } from 'react-native';
const styles = StyleSheet.create({
yearTextContainer: {
alignItems: 'center',
justifyContent: 'center',
paddingVertical: 10,
backgroundColor: '#00bfa5',
borderTopLeftRadius: 5,
borderTopRightRadius: 5,
marginHorizontal: 5,
},
yearTextStyle: {
fontSize: 15,
color: 'black',
},
datePickerContainer: {
height: 60,
marginHorizontal: 5,
backgroundColor: '#1de9b6',
borderBottomLeftRadius: 5,
borderBottomRightRadius: 5,
},
timePickerContainer: {
height: 60,
marginHorizontal: 5,
backgroundColor: '#1de9b6',
marginTop: 10,
borderRadius: 5,
},
flatListStyle: {
marginHorizontal: 10,
},
itemViewStyle: {
alignSelf: 'center',
alignItems: 'center',
justifyContent: 'center',
paddingVertical: 5,
paddingHorizontal: 10,
marginHorizontal: 5,
},
textSelected: {
fontSize: 15,
color: '#f44336',
},
textUnSelected: {
fontSize: 15,
color: '#4A4A4A',
},
});
export default styles;