WingBlank 两翼留白
WingBlank 是 Flex 布局的控件之一。代码演示
<WingBlank size='md'>…</WingBlank>
import { WingBlank, WhiteSpace, Button } from 'antd-mobile';
const WingBlankExample = React.createClass({
render() {
return (
<div className="button-container">
<WhiteSpace />
<WingBlank>
<Button type="primary">两翼留白lg(默认)</Button>
</WingBlank>
<WhiteSpace />
<div style={{ borderTop: '1px solid #108ee9' }} />
<WhiteSpace />
<WingBlank size="md">
<Button type="primary">两翼留白md</Button>
</WingBlank>
<WhiteSpace />
<div style={{ borderTop: '1px solid #108ee9' }} />
<WhiteSpace />
<WingBlank size="sm">
<Button type="primary">两翼留白sm</Button>
</WingBlank>
<WhiteSpace />
</div>
);
},
});
ReactDOM.render(<WingBlankExample />, mountNode);
API
成员 | 说明 | 类型 | 可选值 | 默认值 |
---|---|---|---|---|
size | 两翼留白的间距 | string | sm 、md 、lg | lg |