Overview
Easy to use functional floating input view for iOS projects.
Checkout example project
Usage
// Step 1 - create
let floatingInput = FloatingInputView(data: FloatingInputViewModel(title: "Enter text"))
// Step 2: Customize
self.floatingInput.style(RectStyle())
Installation Guide
Carthage
Step 1: Add following to your CartFile
github "LenisDev/FloatingInput" ~> 0.0.2
Step 2:
run carthage update
from current project directory.
That's all, you have it installed.
CocoaPods
Step 1:
Add pod 'FloatingInput', '~> 0.0.2'
to your Podfile:
target 'MyApp' do
pod 'FloatingInput', '~> 0.0.2'
end
Step 2:
run pod install
from current project directory.
That's all, you have it installed.
Try it using following command
pod try FloatingInput
Swift Package Manager
dependencies: [
.package(url: "https://github.com/LenisDev/FloatingInput.git", .upToNextMajor(from: "0.0.2"))
]
Contribute
- Play around and report bugs
- Fix issues and create PR
- Add documentations and new features