mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 14:23:28 +00:00
11 lines
224 B
TypeScript
11 lines
224 B
TypeScript
import { Dimensions, StyleSheet } from 'react-native';
|
|
|
|
export const styles = StyleSheet.create({
|
|
container: {
|
|
minHeight: Dimensions.get('window').height,
|
|
},
|
|
children: {
|
|
paddingVertical: 12,
|
|
},
|
|
});
|