Modal

Preview

Code sample

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>

Props

Name

Type

Description

open

boolean

set true to show the modal content

*

all the props of react-native modal get passed down

Last updated