@ant-design/react-native
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
46 lines (42 loc) • 1.11 kB
JavaScript
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var _reactNative = require('react-native');
exports['default'] = function (theme) {
return _reactNative.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
}
});
};
module.exports = exports['default'];