Application Android et IOS pour l'amicale des élèves https://play.google.com/store/apps/details?id=fr.amicaleinsat.application
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Styles.tsx 416B

1234567891011121314151617181920212223
  1. import { StyleSheet } from 'react-native';
  2. const GENERAL_STYLES = StyleSheet.create({
  3. centerHorizontal: {
  4. marginLeft: 'auto',
  5. marginRight: 'auto',
  6. },
  7. centerVertical: {
  8. marginTop: 'auto',
  9. marginBottom: 'auto',
  10. },
  11. center: {
  12. marginLeft: 'auto',
  13. marginRight: 'auto',
  14. marginTop: 'auto',
  15. marginBottom: 'auto',
  16. },
  17. flex: {
  18. flex: 1,
  19. },
  20. });
  21. export default GENERAL_STYLES;