styles.tsx 288 B

1234567891011
  1. import { StyleSheet } from 'react-native';
  2. import { Colors } from '../../../theme';
  3. export const styles = StyleSheet.create({
  4. background: { height: '100%', flex: 1 },
  5. contentContainerStyle: { gap: 16, paddingBottom: 16 },
  6. wrapper: {
  7. display: 'flex',
  8. height: '100%'
  9. }
  10. });