@fruits-chain/react-native-xiaoshu
Version:
React Native UI library
26 lines • 830 B
JavaScript
import { StyleSheet } from 'react-native';
export const createStyles = themeVar => {
return StyleSheet.create({
title: {
paddingHorizontal: themeVar.cell_group_title_padding_horizontal,
paddingTop: themeVar.cell_group_title_padding_top,
paddingBottom: themeVar.cell_group_title_padding_bottom,
flexDirection: 'row',
justifyContent: 'space-between',
alignItems: 'center'
},
text: {
color: themeVar.cell_group_title_color,
fontSize: themeVar.cell_group_title_font_size,
lineHeight: themeVar.cell_group_title_line_height
},
body: {
borderStyle: 'solid',
// borderColor: '#000', // to test ui
borderColor: themeVar.cell_border_color,
borderTopWidth: 1,
borderBottomWidth: 1
}
});
};
//# sourceMappingURL=style.group.js.map