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