xref: /MusicFree/src/constants/globalStyle.ts (revision e6b512a77896104a25ef84a37181be5a1ea5fba4)
14ddc4470S猫头猫import {StyleSheet} from 'react-native';
24ddc4470S猫头猫
34ddc4470S猫头猫const globalStyle = StyleSheet.create({
44ddc4470S猫头猫    /** flex 1 */
54ddc4470S猫头猫    flex1: {
64ddc4470S猫头猫        flex: 1,
74ddc4470S猫头猫    },
84ddc4470S猫头猫    /** 满宽度 flex1 */
94ddc4470S猫头猫    fwflex1: {
104ddc4470S猫头猫        width: '100%',
114ddc4470S猫头猫        flex: 1,
124ddc4470S猫头猫    },
13*e6b512a7S猫头猫    /** row 满宽度 flex1 */
14*e6b512a7S猫头猫    rowfwflex1: {
15*e6b512a7S猫头猫        width: '100%',
16*e6b512a7S猫头猫        flex: 1,
17*e6b512a7S猫头猫        flexDirection: 'row',
18*e6b512a7S猫头猫    },
1975d76114S猫头猫    /** 居中 */
2075d76114S猫头猫    fullCenter: {
2175d76114S猫头猫        width: '100%',
2275d76114S猫头猫        flex: 1,
2375d76114S猫头猫        justifyContent: 'center',
2475d76114S猫头猫        alignItems: 'center',
2575d76114S猫头猫    },
26e650bfb3S猫头猫    notShrink: {
27e650bfb3S猫头猫        flexShrink: 0,
28e650bfb3S猫头猫        flexGrow: 0,
29e650bfb3S猫头猫    },
30e650bfb3S猫头猫    grow: {
31e650bfb3S猫头猫        flexShrink: 0,
32e650bfb3S猫头猫        flexGrow: 1,
33e650bfb3S猫头猫    },
343b155a65S猫头猫} as const);
354ddc4470S猫头猫
364ddc4470S猫头猫export default globalStyle;
37