@fruits-chain/react-native-xiaoshu
Version:
React Native UI library
28 lines (26 loc) • 812 B
JavaScript
import { StyleSheet } from 'react-native';
export const createStyles = themeVar => {
return StyleSheet.create({
body: {
flex: 1
},
option_item: {
paddingHorizontal: themeVar.select_popup_body_padding_horizontal,
height: themeVar.select_popup_option_text_line_height,
flexDirection: 'row',
alignItems: 'center' // backgroundColor: '#f30', // to test ui
},
option_item_text: {
flex: 1,
lineHeight: themeVar.select_popup_option_text_line_height,
fontSize: themeVar.font_size_h5,
color: themeVar.text_color_1 // backgroundColor: '#f30', // to test ui
},
btn: {
height: 60,
justifyContent: 'center',
paddingHorizontal: themeVar.select_popup_body_padding_horizontal
}
});
};
//# sourceMappingURL=style.js.map