Modal
Preview

Code sample
Props
Name
Type
Description
open
boolean
set true to show the modal content
Last updated

Name
Type
Description
open
boolean
set true to show the modal content
Last updated
import { Modal } from '@dormakaba/digital-reactnative-visual';
<Modal open={open}>
<Card>
<Text>This is a modal</Text>
<Button primary onPress={() => this.setState({ open: false })}>close</Button>
</Card>
</Modal>