You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.0 KiB
46 lines
1.0 KiB
export default {
|
|
Tabs: {
|
|
container: {
|
|
flex: 1
|
|
},
|
|
topTabBarSplitLine: {
|
|
borderBottomColor: '#eee',
|
|
borderBottomWidth: 1
|
|
},
|
|
bottomTabBarSplitLine: {
|
|
borderTopColor: '#eee',
|
|
borderTopWidth: 1
|
|
}
|
|
},
|
|
TabBar: {
|
|
container: {
|
|
height: 43.5
|
|
},
|
|
tabs: {
|
|
flex: 1,
|
|
flexDirection: 'row',
|
|
height: 43.5,
|
|
backgroundColor: '#fff',
|
|
justifyContent: 'space-around'
|
|
},
|
|
tab: {
|
|
height: 43.5,
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
paddingTop: 0,
|
|
paddingBottom: 0,
|
|
paddingRight: 2,
|
|
paddingLeft: 2,
|
|
flexDirection: 'row'
|
|
},
|
|
underline: {
|
|
height: 2,
|
|
backgroundColor: '#108ee9'
|
|
},
|
|
textStyle: {
|
|
fontSize: 15
|
|
},
|
|
activeTextColor: '#108ee9',
|
|
inactiveTextColor: '#000'
|
|
}
|
|
}; |