style.js
2.65 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
import React from 'react-native';
const {
StyleSheet,
Dimensions,
Platform
} = React;
const {height, width} = Dimensions.get('window');
let containerHeight = 260;
const styles = StyleSheet.create({
baseText: {
fontSize: 13,
color: '#4a4a4a',
lineHeight: 18
},
dimText: {
color: '#9b9b9b',
},
wvContainer:{
backgroundColor: '#fff',
height: height,
width: width,
position: 'absolute',
bottom: 0,
left:0,
zIndex:1000
},
container: {
backgroundColor: '#fff',
height: 260,
width: width-30,
position: 'absolute',
bottom: 0,
left:0,
},
emoji: {
textAlign: 'center',
fontSize: 25,
lineHeight: 50,
color: '#rgba(0,0,0,1)'
},
emojiTouch:{
width: (width-40)/6,
height: (containerHeight-40-50)/4,
justifyContent: 'center',
alignItems: 'center'
},
delete:{
right:0
},
scrollTable: {
width: width
},
scrollGroupTable: {
paddingBottom: 40
},
cateView: {
flex: 1,
},
groupView: {
flex: 1,
width:width-30,
flexDirection: 'row',
// alignItems:'flex-end',
// justifyContent: 'space-between',
// alignContent:'flex-end',
flexWrap: 'wrap',
// paddingLeft: 15,
// paddingRight: 15,
// paddingTop: 15
},
tab: {
alignItems: 'center',
justifyContent: 'center',
paddingBottom: 0,
width: 60,
borderRightWidth: 1,
borderColor: 'rgba(178,178,178,.3)',
backgroundColor: '#fff'
},
tabs: {
height: 40,
width: width-30,
flexDirection: 'row',
borderWidth: 1,
borderBottomWidth: 0,
borderLeftWidth: 0,
borderRightWidth: 0,
borderTopColor: 'rgba(178,178,178,0.3)',
backgroundColor: 'rgba(255,255,255,1)',
},
tabsDot: {
height: 40,
width: width,
flexDirection: 'row',
borderWidth: 0,
justifyContent: 'center',
alignItems: 'center'
},
tabDot: {
width: 10,
height: 10,
borderRadius: 5,
alignItems: 'center',
justifyContent: 'center',
marginLeft: 5,
marginRight: 5
},
dot: {
backgroundColor: '#f1f1f1',
width: 6,
height: 6,
borderRadius: 3,
},
backspace:{
width:30,
height:30,
opacity: .5
},
plusButton: {
width: 20,
height: 20,
opacity: 0.8
}
});
export default styles;