forked from beefe/react-native-actionsheet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.js
57 lines (48 loc) · 857 Bytes
/
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
import {StyleSheet, Dimensions, StatusBar} from 'react-native';
export const hairlineWidth = StyleSheet.hairlineWidth;
export default StyleSheet.create({
overlay: {
position: 'absolute',
top: 0,
right: 0,
bottom: 0,
left: 0,
opacity: 0.4,
backgroundColor: '#000'
}
});
export const sheetStyle = StyleSheet.create({
wrapper: {
flex: 1,
flexDirection: 'row'
},
bd: {
flex: 1,
alignSelf: 'flex-end',
backgroundColor: '#e5e5e5'
},
title: {
height: 40,
alignItems: 'center',
justifyContent: 'center',
backgroundColor: '#fff'
},
titleText: {
color: '#8f8f8f',
fontSize: 12
},
options: {
}
});
export const btnStyle = StyleSheet.create({
wrapper: {
height: 50,
marginTop: hairlineWidth,
alignItems: 'center',
justifyContent: 'center',
backgroundColor: '#fff'
},
title: {
fontSize: 18
}
});