Files
react-native-swipeout/example/styles.js
2017-04-20 10:22:58 +08:00

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