Input Engine is a Kotlin Multiplatform UI Library that enables easy and customizable UI inputs for:
- 💰 Money
- 📈 Percentage
- 🔢 Quantity
- 🔐 PIN
Now supports both Android and iOS via KMP shared code.
Step 1. Add the JitPack repository to your root settings.gradle
:
dependencyResolutionManagement {
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Step 2. Add the dependency to your build.gradle
:
dependencies {
implementation 'com.github.tillhub:input-engine:x.x.x'
}
Step 1. Add the XCFramework to your Xcode project:
- Clone the repo and run:
./gradlew :input-engine:assembleXCFramework
- Drag
InputEngineKit.xcframework
into your Xcode project - Link it under "Frameworks, Libraries, and Embedded Content"
Step 2. Import and use in Swift:
import InputEngineKit
let contract = AmountInputContract()
// Use Kotlin/Native bridge to integrate with shared logic
✅ Compatible with both SwiftUI and UIKit.
In your Activity or Fragment:
val getAmount = registerForActivityResult(AmountInputContract()) {
when (it) {
is AmountInputResult.Success -> {
val amount = it.amount
// Handle the returned amount
}
AmountInputResult.Canceled -> {
// Handle cancellation
}
}
}
amountButton.setOnClickListener {
getAmount.launch(AmountInputRequest(...))
}
Contract | Description |
---|---|
AmountInputContract |
Input for currency / money values |
PercentageInputContract |
Input for percentage values |
QuantityInputContract |
Input for decimal/integer quantities |
PinInputContract |
Secure PIN entry |
All result contracts follow the sealed structure:
sealed class AmountInputResult {
class Success(val amount: MoneyIO, val extras: Bundle) : AmountInputResult()
data object Canceled : AmountInputResult()
}
MIT License
Copyright (c) 2024 Tillhub GmbH
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.