mirror of
https://github.com/zhigang1992/react-native-swipeout.git
synced 2026-06-14 18:09:38 +08:00
49 lines
854 B
JavaScript
Executable File
49 lines
854 B
JavaScript
Executable File
import React from 'react';
|
|
import { StyleSheet } from 'react-native';
|
|
|
|
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
|