We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 398aced commit 21e3d3dCopy full SHA for 21e3d3d
packages/core/src/Modal/README.md
@@ -48,4 +48,11 @@ export default class ButtonGroupView extends Component {
48
49
## Props
50
51
-继承原生 Modal 属性 [`ModalProps`](https://facebook.github.io/react-native/docs/modal.html#props)
+继承原生 Modal 属性 [`ModalProps`](https://facebook.github.io/react-native/docs/modal.html#props)
52
+
53
+```ts
54
+export interface ModalProps extends MaskLayerProps {
55
+ placement?: 'top' | 'right' | 'bottom' | 'left';
56
+ onClosed?: () => void;
57
+}
58
+```
0 commit comments