Skip to main content
161

Search Lumen

Find components, APIs, guides, and recipes.

GitHub
React Native docs
LayoutReact Native

Sheet

Present supplemental application content in a controlled native sheet.

Public APILumenSheetReact Native

Native example

Use Sheet

Use for supplemental editing or detail that should not replace the current screen. Keep form state and dismissal decisions application-owned.

View verified React Native runtime capture
Sheet rendered in the Expo web renderer Lumen playground
Verified runtime captureExpo web renderer
tsx
<LumenSheet
  visible={showEditor}
  title="Edit report"
  onDismiss={() => setShowEditor(false)}
>
  <ReportEditor />
</LumenSheet>

Reference

Public API

The primary shared and platform-specific options exposed by LumenSheet.

APIValues or typeDefaultDescription
visiblebooleanRequiredControls native sheet presentation.
title / descriptionNative localized textnil / undefinedProvides optional heading context.
onDismiss() -> VoidRequiredReturns presentation ownership to the application.
content / actionsNative view slotsActions optionalComposes application-owned content and actions.

Native behavior

Design and accessibility

When to use it

Use for supplemental editing or detail that should not replace the current screen. Keep form state and dismissal decisions application-owned.

Accessibility

The native modal presentation contains focus while preserving the semantics and reading order of application-owned content.

Shared component

Available on other platforms

Apple / SwiftUIAndroid / Compose
React Native docsNative primitives