1import {StyleSheet} from 'react-native'; 2 3const globalStyle = StyleSheet.create({ 4 /** flex 1 */ 5 flex1: { 6 flex: 1, 7 }, 8 /** 满宽度 flex1 */ 9 fwflex1: { 10 width: '100%', 11 flex: 1, 12 }, 13 /** 居中 */ 14 fullCenter: { 15 width: '100%', 16 flex: 1, 17 justifyContent: 'center', 18 alignItems: 'center', 19 }, 20} as const); 21 22export default globalStyle; 23