Feedback/DSBottomSheet
DSBottomSheet
feedbackiOS-native bottom sheet using presentationDetents, with a drag handle and configurable snap points.
iOS 17+
Purpose
Actions, filters, detail panels, and any content that should not cover the full screen.
Interactive Reference
Live showroom
Need the full visual surface?
Screenshots do not scale well across every component, state, and variant. For the real interactive reference, import the package and launch DSShowcaseRoot().
Best for exploring:
variants, states, categories, and real app examples in one place.
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| isPresentedreq | Binding<Bool> | — | Controls visibility. |
| detents | [PresentationDetent] | [.medium] | Snap heights. |
| showHandle | Bool | true | Shows the drag handle. |
| contentreq | ViewBuilder | — | Sheet content. |
Examples
Filter sheet
Filter options in a medium-height sheet.
swift
DSBottomSheet(isPresented: $showFilters, detents: [.medium, .large]) {
FilterOptionsView(filters: $activeFilters)
}