https://github.com/ohkanghoon/basicbottomsheet
https://github.com/ohkanghoon/basicbottomsheet
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ohkanghoon/basicbottomsheet
- Owner: OhKanghoon
- License: mit
- Created: 2024-08-01T08:49:38.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-08-11T09:12:46.000Z (10 months ago)
- Last Synced: 2025-03-01T21:23:04.465Z (3 months ago)
- Language: Swift
- Size: 18.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BasicBottomSheet
[](https://github.com/OhKanghoon/BasicBottomSheet/actions?query=branch%3Amain+workflow%3ACI)
[](https://github.com/apple/swift-package-manager)
[](https://swiftpackageindex.com/OhKanghoon/BasicBottomSheet)
[](https://swiftpackageindex.com/OhKanghoon/BasicBottomSheet)A library that displays bottom sheet.
See the [BasicBottomSheet DocC documentation](https://swiftpackageindex.com/OhKanghoon/BasicBottomSheet/main/documentation/basicbottomsheet) hosted on the [Swift Package Index](https://swiftpackageindex.com/).
## Compatibility
BasicBottomSheet requires **iOS 11+** and is compatible with **Swift 5** projects.
## Installation
### [Swift Package Manager](https://swift.org/package-manager).
The preferred way of installing BasicBottomSheet is via the Swift Package Manager
1. In Xcode, open your project and navigate to **File** → **Add Packages**
2. Paste the repository URL (`https://github.com/OhKanghoon/BasicBottomSheet`) and click **Next**.
3. For **Rules**, select **Up to Next Major Version**.
4. Click **Add Package**.### [CocoaPods](https://guides.cocoapods.org/using/using-cocoapods.html)
```ruby
# Podfile
use_frameworks!target 'YOUR_TARGET_NAME' do
pod 'BasicBottomSheet'
end
```Replace `YOUR_TARGET_NAME` and then, in the `Podfile` directory, type:
```bash
$ pod install
```