@ant-design/react-native
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
37 lines • 969 B
JavaScript
import { StyleSheet } from 'react-native';
export default (function (theme) {
return StyleSheet.create({
container: {
alignItems: 'center',
justifyContent: 'center'
},
numberStyle: {
flexDirection: 'row',
justifyContent: 'center'
},
totalStyle: {
fontSize: 18,
color: theme.color_text_base
},
activeTextStyle: {
fontSize: 18,
color: theme.color_link
},
indicatorStyle: {
flexDirection: 'row'
},
pointStyle: {
width: 8,
height: 8,
borderRadius: 8,
backgroundColor: theme.input_color_icon
},
pointActiveStyle: {
backgroundColor: '#888'
},
spaceStyle: {
marginHorizontal: theme.h_spacing_sm / 2,
marginVertical: theme.v_spacing_sm / 2
}
});
});