An open API service indexing awesome lists of open source software.

https://github.com/ohkanghoon/basicbottomsheet


https://github.com/ohkanghoon/basicbottomsheet

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# BasicBottomSheet

[![Build Status](https://github.com/OhKanghoon/BasicBottomSheet/workflows/CI/badge.svg?branch=main)](https://github.com/OhKanghoon/BasicBottomSheet/actions?query=branch%3Amain+workflow%3ACI)
[![Swift Package Manager compatible](https://img.shields.io/badge/SPM-compatible-4BC51D.svg?style=flat)](https://github.com/apple/swift-package-manager)
[![Swift Versions](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2FOhKanghoon%2FBasicBottomSheet%2Fbadge%3Ftype%3Dswift-versions)](https://swiftpackageindex.com/OhKanghoon/BasicBottomSheet)
[![Platform](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2FOhKanghoon%2FBasicBottomSheet%2Fbadge%3Ftype%3Dplatforms)](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
```