xref: /MusicFree/src/constants/globalStyle.ts (revision 734113be9d256a2b4d36bb272d6d3565beaeb236)
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