mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-13 07:39:10 +08:00
766748a501
* feat: change visible to open for Drawer * refactor: use open internal either * feat: add warning when use visible * test: Fix test Co-authored-by: 二货机器人 <smith3816@gmail.com>
1009 B
1009 B
order | title | debug | ||||
---|---|---|---|---|---|---|
99 |
|
true |
zh-CN
通过 mask={false}
去掉遮罩。
en-US
Remove mask.
import { Button, Drawer } from 'antd';
import React, { useState } from 'react';
const App: React.FC = () => {
const [open, setOpen] = useState(false);
const showDrawer = () => {
setOpen(true);
};
const onClose = () => {
setOpen(false);
};
return (
<>
<Button type="primary" onClick={showDrawer}>
Open
</Button>
<Drawer
title="Drawer without mask"
placement="right"
mask={false}
onClose={onClose}
open={open}
contentWrapperStyle={{
width: 333,
background: 'red',
borderRadius: 20,
boxShadow: '-5px 0 5px green',
overflow: 'hidden',
}}
>
<p>Some contents...</p>
<p>Some contents...</p>
<p>Some contents...</p>
</Drawer>
</>
);
};
export default App;