mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 09:53:25 +00:00
20 lines
369 B
TypeScript
20 lines
369 B
TypeScript
import { StyleSheet } from 'react-native';
|
|
|
|
const styles = StyleSheet.create({
|
|
items: {
|
|
display: 'flex',
|
|
flexWrap: 'wrap',
|
|
justifyContent: 'flex-start',
|
|
width: '100%',
|
|
flexDirection: 'row',
|
|
flex: 1,
|
|
},
|
|
itemOuter: {
|
|
flexBasis: '50%',
|
|
paddingHorizontal: 12,
|
|
paddingBottom: 12,
|
|
},
|
|
});
|
|
|
|
export default styles;
|