Skip to content
This repository has been archived by the owner on Jan 29, 2024. It is now read-only.
/ bottom-sheet Public archive
forked from weitieda/bottom-sheet

⬆️ A SwiftUI view component sliding in from bottom

License

Notifications You must be signed in to change notification settings

teufelaudio/bottom-sheet

 
 

Repository files navigation

This repository is archived

This repository is no longer actively maintained. If you're interested in this component, checkout the upstream repository.

SwiftUI BottomSheet

GitHub tag (latest SemVer) License

preview preview

Usage

Same way as you use Sheet in SwiftUI

NavigationView {
    List(0..<20) {
        Text("\($0)")
    }.listStyle(PlainListStyle())
    .bottomSheet(isPresented: $isPresented, height: 300) {
        List(20..<40) { Text("\($0)") }.listStyle(PlainListStyle())
    }
    .navigationBarTitle("Bottom Sheet")
    .navigationBarItems(
        trailing: Button(action: { self.isPresented = true }) {
            Text("Show")
        }
    )
}

Example

Both demo preview code are available in example project.

To run the example project, clone this repo, and open iOS Example.xcworkspace from the iOS Example directory.

Installation

📱 iOS 13.0+

Swift Package Manager

To install BottomSheet using Swift Package Manager, add .package(name: "BottomSheet", url: "https://github.com/weitieda/bottom-sheet", from: "1.0.0")," to your Package.swift, then follow the integration tutorial here.

CocoaPods

To install BottomSheet using CocoaPods, add pod 'BottomSheet', :git => 'https://github.com/weitieda/bottom-sheet.git' to your Podfile, then follow the integration tutorial here.

Author

Tieda Wei

License

BottomSheet is available under the MIT license. See the LICENSE file for more information.

About

⬆️ A SwiftUI view component sliding in from bottom

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Swift 96.0%
  • Ruby 4.0%