Swiftpack.co - Polenoso/BottomSheetSUI as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by Polenoso.
Polenoso/BottomSheetSUI 1.0.1
SwiftUI package to present a Bottom Sheet interactable view with the desired Detents. Also known as Half sheet.
⭐️ 8
🕓 2 years ago
iOS
.package(url: "https://github.com/Polenoso/BottomSheetSUI.git", from: "1.0.1")

BottomSheetSUI

BottomSheetSUI is a package that gives you the ability to show a Bottom sheet interactable, where you can add your own SwiftUI view.

You can customize the detents available for the sheet. Small, Medium and Large. It will use just a set of them.

The project is inspired by the implementation of UISheetPresentationController in UIKit to make it available for SwiftUI.

It is also inspired by the content made by KavSoft, modified to make it reusable within any view.

Installation

Use the package manager SPM to add BottomSheetSUI.

dependencies: [
        .package(url: "https://github.com/Polenoso/BottomSheetSUI.git", from: "1.0.1"),
    ],
targets:
 .target("yourtarget",
        dependencies: [BottomSheetSUI])

Usage

import BottomSheetSUI

...
struct SomeView: View {
    @State var detent: SheetDetent = .small
    var body: some View {
        ...
        BottomSheetView(detent: self.$detent) {
            Text("This is an example content")
        }
    } 
}
...

Examples

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

GitHub

link
Stars: 8
Last commit: 1 year ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Release Notes

v1.0.1 small fix
2 years ago

Adding Detent binding from super view Fixing scroll overflow

Full Changelog: https://github.com/Polenoso/BottomSheetSUI/compare/1.0.0...1.0.1

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics