css.js
1011 Bytes
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
import { StyleSheet} from 'react-native';
const mainCss = StyleSheet.create({
body:{
flex: 1,
flexDirection: 'column',
backgroundColor:"#f4f4f4"
},
main :{
flex: 1
},
tabIcon:{
flex: 1,
width: 20,
height: 20,
marginBottom:0,
paddingBottom:0,
},
//列表
xnRowLayout:{
},
xnRow:{
flexDirection:"row",
alignItems:"center",
backgroundColor:"#fff",
paddingLeft:15,
paddingRight:15,
paddingTop:10,
paddingBottom:10,
borderBottomWidth:0.5,
borderBottomColor:"#d9d9d9",
},
xnRowInfo:{
flex:1,
justifyContent:"center",
minHeight:24,
},
xnRowContent:{
flex:1,
justifyContent:"center",
minHeight:24,
},
xnRowInfoText:{
color:"#333",
fontSize:14,
},
xnRowLink:{
width:10,
height:10,
borderTopWidth:0.5,
borderTopColor:"#666",
borderRightWidth:0.5,
borderRightColor:"#666",
transform:[
{rotate:'45deg'},
],
}
});
export default mainCss;