https://github.com/levantaj/padview
PadView is a bottom pad view controller
https://github.com/levantaj/padview
bottomsheet cocoapods pad padding
Last synced: 3 months ago
JSON representation
PadView is a bottom pad view controller
- Host: GitHub
- URL: https://github.com/levantaj/padview
- Owner: levantAJ
- License: mit
- Created: 2019-11-23T07:57:33.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-12-15T09:50:59.000Z (about 6 years ago)
- Last Synced: 2025-08-03T14:49:42.678Z (6 months ago)
- Topics: bottomsheet, cocoapods, pad, padding
- Language: Swift
- Homepage: https://geek-is-stupid.github.io/
- Size: 23.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://cocoapods.org/pods/PadView)
[](http://cocoapods.org/pods/PadView)
[](https://www.apache.org/licenses/LICENSE-2.0.html)
[](https://travis-ci.org/levantAJ/PadView)
# 🩹 PadView
PadView is a bottom pad view controller

## Requirements
- iOS 9.0 or later
- Xcode 10.0 or later
## Installation
There is a way to use PadView in your project:
- using CocoaPods
### Installation with CocoaPods
```
pod 'PadView'
```
### Build Project
At this point your workspace should build without error. If you are having problem, post to the Issue and the
community can help you solve it.
## How To Use
```swift
import PadView
let contentView = UIView()
contentView.translatesAutoresizingMaskIntoConstraints = false
NSLayoutConstraint.activate([
contentView.heightAnchor.constraint(equalToConstant: 100)
])
let padVC = PadViewViewController(contentView: contentView)
present(padVC, animated: false, completion: nil)
```
## Author
- [Tai Le](https://github.com/levantAJ)
## Communication
- If you **found a bug**, open an issue.
- If you **have a feature request**, open an issue.
- If you **want to contribute**, submit a pull request.
## Licenses
All source code is licensed under the [MIT License](https://raw.githubusercontent.com/levantAJ/PadView/master/LICENSE).