mirror of
https://github.com/zhigang1992/react-native-swipeout.git
synced 2026-06-15 02:19:37 +08:00
48 lines
844 B
JavaScript
48 lines
844 B
JavaScript
var React = require('react-native')
|
|
var {StyleSheet} = React
|
|
|
|
var styles = StyleSheet.create({
|
|
container: {
|
|
backgroundColor: '#f2f2f2',
|
|
flex: 1,
|
|
},
|
|
listview: {
|
|
flex: 1,
|
|
},
|
|
li: {
|
|
backgroundColor: '#fff',
|
|
borderBottomColor: '#eee',
|
|
borderColor: 'transparent',
|
|
borderWidth: 1,
|
|
paddingLeft: 16,
|
|
paddingTop: 14,
|
|
paddingBottom: 16,
|
|
},
|
|
liContainer: {
|
|
flex: 2,
|
|
},
|
|
liText: {
|
|
color: '#333',
|
|
fontSize: 16,
|
|
},
|
|
navbar: {
|
|
alignItems: 'center',
|
|
backgroundColor: '#fff',
|
|
borderBottomColor: '#eee',
|
|
borderColor: 'transparent',
|
|
borderWidth: 1,
|
|
justifyContent: 'center',
|
|
height: 44,
|
|
},
|
|
navbarTitle: {
|
|
color: '#444',
|
|
fontSize: 16,
|
|
fontWeight: "500",
|
|
},
|
|
statusbar: {
|
|
backgroundColor: '#fff',
|
|
height: 22,
|
|
}
|
|
})
|
|
|
|
module.exports = styles |