UNPKG

@ant-design/react-native

Version:

基于蚂蚁金服移动设计规范的 React Native 组件库

63 lines 1.79 kB
import { StyleSheet } from 'react-native'; import varibles from '../../style/themes/default'; export default (function () { return StyleSheet.create({ container: { flexWrap: 'wrap', flexDirection: 'row' }, size: { width: 80, height: 80 }, item: { marginRight: varibles.h_spacing_sm, marginBottom: varibles.v_spacing_sm, overflow: 'hidden' }, image: { overflow: 'hidden', borderRadius: varibles.radius_sm }, closeWrap: { width: 16, height: 16, backgroundColor: '#999', borderRadius: 8, position: 'absolute', top: 4, right: 4, justifyContent: 'center', alignItems: 'center', overflow: 'hidden' }, closeText: { color: varibles.color_text_base_inverse, backgroundColor: 'transparent', fontSize: 20, height: 20, marginTop: -8, fontWeight: '300' }, plusWrap: { borderRadius: varibles.radius_sm, borderWidth: 1, justifyContent: 'center', alignItems: 'center' }, plusWrapNormal: { backgroundColor: varibles.fill_base, borderColor: varibles.border_color_base }, plusWrapHighlight: { backgroundColor: varibles.fill_tap, borderColor: varibles.border_color_base }, plusText: { fontSize: 64, backgroundColor: 'transparent', fontWeight: '100', color: varibles.color_text_caption } }); });