gitextract_vhrt5p88/ ├── .gitignore ├── Example/ │ ├── BottomSheetExample/ │ │ ├── Apple Applications/ │ │ │ └── StocksExample.swift │ │ ├── Assets.xcassets/ │ │ │ ├── AccentColor.colorset/ │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── BottomSheetExampleApp.swift │ │ ├── ExampleOverview.swift │ │ ├── Examples/ │ │ │ └── StaticScrollViewExample.swift │ │ ├── Preview Content/ │ │ │ └── Preview Assets.xcassets/ │ │ │ └── Contents.json │ │ └── View Modifiers/ │ │ └── CornerRadius.swift │ └── BottomSheetExample.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata/ │ └── xcschemes/ │ └── BottomSheetExample.xcscheme ├── LICENSE ├── Package.swift ├── README.md ├── Sources/ │ └── BottomSheet/ │ ├── Animation/ │ │ ├── Animation.swift │ │ └── AnimationDefaults.swift │ ├── BottomSheet.swift │ ├── Detents/ │ │ ├── DetentDefaults.swift │ │ ├── DetentHelpers.swift │ │ └── Detents.swift │ ├── Helpers/ │ │ ├── KeyboardReader.swift │ │ └── Snapping.swift │ ├── Preference Keys/ │ │ ├── BackgroundInteractionKey.swift │ │ ├── ConfigKey.swift │ │ └── IndicatorKey.swift │ ├── UIKit Views/ │ │ └── UIScrollViewWrapper.swift │ ├── View Modifiers/ │ │ ├── View+AnimationChange.swift │ │ ├── View+BackgroundInteraction.swift │ │ ├── View+Detents.swift │ │ ├── View+DragIndicator.swift │ │ └── View+SheetPlus.swift │ └── Views/ │ └── DragIndicator.swift └── Tests/ └── BottomSheetTests/ └── BottomSheetTests.swift