@fruits-chain/react-native-xiaoshu
Version:
React Native UI library
38 lines (32 loc) • 970 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.createStyles = void 0;
var _reactNative = require("react-native");
const createStyles = themeVar => {
return _reactNative.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
}
});
};
exports.createStyles = createStyles;
//# sourceMappingURL=style.js.map