2017-12-08 19:13:21 +00:00
|
|
|
import { StyleSheet } from 'react-native';
|
|
|
|
|
|
|
|
export default StyleSheet.create({
|
|
|
|
container: {
|
2018-04-24 19:34:03 +00:00
|
|
|
flex: 1
|
2017-12-08 19:13:21 +00:00
|
|
|
},
|
|
|
|
separator: {
|
|
|
|
height: 1,
|
|
|
|
backgroundColor: '#E7E7E7'
|
|
|
|
},
|
|
|
|
list: {
|
|
|
|
width: '100%',
|
|
|
|
backgroundColor: '#FFFFFF'
|
|
|
|
},
|
|
|
|
emptyView: {
|
|
|
|
flexGrow: 1,
|
|
|
|
alignItems: 'stretch',
|
|
|
|
justifyContent: 'center'
|
|
|
|
},
|
|
|
|
emptyText: {
|
|
|
|
textAlign: 'center',
|
|
|
|
fontSize: 18,
|
|
|
|
color: '#ccc'
|
|
|
|
},
|
|
|
|
actionButtonIcon: {
|
|
|
|
fontSize: 20,
|
|
|
|
height: 22,
|
|
|
|
color: 'white'
|
|
|
|
},
|
|
|
|
searchBoxView: {
|
|
|
|
backgroundColor: '#eee'
|
|
|
|
},
|
|
|
|
searchBox: {
|
|
|
|
backgroundColor: '#fff',
|
|
|
|
margin: 5,
|
|
|
|
borderRadius: 5,
|
|
|
|
padding: 5,
|
|
|
|
paddingLeft: 10,
|
|
|
|
color: '#aaa'
|
2018-08-01 19:35:06 +00:00
|
|
|
},
|
|
|
|
loading: {
|
|
|
|
flex: 1
|
2017-12-08 19:13:21 +00:00
|
|
|
}
|
|
|
|
});
|