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} as const); 14 15export default globalStyle; 16