@ant-design/react-native
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
34 lines • 842 B
JavaScript
import _extends from 'babel-runtime/helpers/extends';
import { StyleSheet } from 'react-native';
var textStyle = {
color: '#0ae',
fontSize: 18,
textAlign: 'center'
};
var styles = StyleSheet.create({
modal: {
flexDirection: 'column',
justifyContent: 'flex-end'
},
container: {},
header: {
// flex:1, 0.39.0 needs to remove
height: 44,
alignItems: 'center',
flexDirection: 'row',
justifyContent: 'center',
borderBottomWidth: 1,
borderBottomColor: '#e7e7e7'
},
headerItem: {
height: 44,
alignItems: 'center',
justifyContent: 'center',
flex: 1
},
actionText: textStyle,
okText: {},
dismissText: {},
title: _extends(_extends({}, textStyle), { color: '#666' })
});
export default styles;