application-amicale/src/constants/Styles.tsx
2021-05-07 15:10:36 +02:00

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;