Skip to content

Latest commit

 

History

History
21 lines (19 loc) · 428 Bytes

File metadata and controls

21 lines (19 loc) · 428 Bytes
id modal
title Modal
officialDoc https://reactnative.dev/docs/modal
let (visible, setVisible) = React.useState(() => false)

<Modal
  animationType=#slide
  transparent=false
  visible
  backdropColor="#000"
  onRequestClose={_ => setVisible(_ => false)}>
  <View>
    <Text> {"Hello Modal"->React.string} </Text>
    <Button title="Close" onPress={_ => setVisible(_ => false)} />
  </View>
</Modal>