Skip to content

Files

Latest commit

 

History

History
29 lines (22 loc) · 780 Bytes

options-overlay.mdx

File metadata and controls

29 lines (22 loc) · 780 Bytes
id title sidebar_label
options-overlay
Overlay
Overlay

Controls overlay options

const options = {
  overlay: {

  }
}

interceptTouchOutside

Controls whether touch events outside the bounds of the overlay are to be handled by content behind the overlay. When set to true, touch events will not pass through to the underlying content.

Type Required Platform
boolean No Both

handleKeyboardEvents

Overlays on iOS don't handle keyboard events by default. If your Overlay contains a TextInput component, you'll want to enable this option so that TextInput responds to keyboard events.

Type Required Platform
boolean No iOS