BottomSheetA surface that rises from the bottom edge with drag-to-dismiss. The default container for contextual tasks on touch.
using eQuantic.UI.Components;
new BottomSheet(new TransferOptions())
OnDismiss = () => SetState(() => _sheet = null),
Prop
Type
Default
Description
Content
VisualNode
—
Sheet content; it owns its own scrolling.
Dismissible
bool
true
Scrim tap and downward fling dismiss.
OnDismiss
Action?
null
Fires once the dismissal completes.
Dragging
Follows the finger one-to-one
Settling
Snaps by position and velocity
Dismissing
Slides out as the scrim fades
•
Dialog semantics with focus trapped; the grabber exposes expand, collapse and close as actions.
•
Pickers, filters and detail peeks that keep the parent visible.
•
Nested or simultaneous sheets.
NOTEEvery dimension resolves through Sizing.*(SizeVariant) and the token scales — never a literal. Source: src/eQuantic.UI.Components/BottomSheet.cs.