18 lines
389 B
JavaScript
18 lines
389 B
JavaScript
import { StyleSheet } from 'react-native';
|
|
|
|
export default (styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
backgroundColor: '#F5FCFF',
|
|
},
|
|
itemList: {
|
|
width: '100%',
|
|
},
|
|
itemListContentContainer: {
|
|
alignItems: 'stretch',
|
|
justifyContent: 'flex-start',
|
|
},
|
|
}));
|