UNPKG

@fto-consult/expo-ui

Version:

Bibliothèque de composants UI Expo,react-native

53 lines (48 loc) • 1.18 kB
import { StyleSheet, Dimensions } from 'react-native'; const { width } = Dimensions.get('window'); const SCREEN_WIDTH = width; export default StyleSheet.create({ container: { flexDirection: 'row', alignItems: 'center', justifyContent: 'center', // borderWidth:1, }, mainBox: { }, basicContainer: { flex: 1, justifyContent: 'flex-end', alignItems: 'center', }, modalContainer: { width: SCREEN_WIDTH, justifyContent: 'center', alignItems: 'center', padding: 0, }, buttonView: { width: SCREEN_WIDTH, padding: 8, borderTopWidth: 0.5, borderTopColor: 'lightgrey', justifyContent: 'space-between', flexDirection: 'row', }, bottomPicker: { width: SCREEN_WIDTH, }, flag: { height: 20, width: 30, borderRadius: 2, borderWidth: 0.5, borderColor: '#cecece', backgroundColor: '#cecece', }, text: { height: 20, padding: 0, justifyContent: 'center', }, });