23 lines
416 B
TypeScript
23 lines
416 B
TypeScript
import { StyleSheet } from 'react-native';
|
|
|
|
const GENERAL_STYLES = StyleSheet.create({
|
|
centerHorizontal: {
|
|
marginLeft: 'auto',
|
|
marginRight: 'auto',
|
|
},
|
|
centerVertical: {
|
|
marginTop: 'auto',
|
|
marginBottom: 'auto',
|
|
},
|
|
center: {
|
|
marginLeft: 'auto',
|
|
marginRight: 'auto',
|
|
marginTop: 'auto',
|
|
marginBottom: 'auto',
|
|
},
|
|
flex: {
|
|
flex: 1,
|
|
},
|
|
});
|
|
|
|
export default GENERAL_STYLES;
|