KeyboardKitPro
KeyboardKitPro copied to clipboard
KeyboardKit Pro helps you create custom keyboards for iOS and iPadOS.
About KeyboardKit Pro
KeyboardKit is a Swift SDK that lets you create fully customizable keyboards in a few lines of code, using SwiftUI.
KeyboardKit extends Apple's native APIs and provides you with a lot more functionality. It lets you mimic the native iOS keyboard and tweak its style and behavior, or create completely custom keyboards.
Custom iOS keyboard extensions can be used with all other apps that support text input. It's the only way for your product, brand or technology to directly interact with other apps on iOS. Don't miss out!
KeyboardKit Pro extends KeyboardKit with pro features like fully localized keyboards & services, autocomplete, an emoji keyboard, AI supporting capabilities, themes, dictation, and much more.
Commercially Licensed
KeyboardKit Pro is closed source and requires a commercial license.
Licenses can be purchased from the website or from Gumroad.
Installation
KeyboardKit Pro can be installed with the Swift Package Manager:
https://github.com/KeyboardKit/KeyboardKitPro.git
Important! Unlike KeyboardKit, KeyboardKit Pro is a binary target and must only be added to the app target. If you add it to any other target, it may crash at runtime.
Getting started
After installing KeyboardKit Pro, just make your KeyboardViewController inherit KeyboardInputViewController instead of UIInputViewController:
import KeyboardKitPro
class KeyboardController: KeyboardInputViewController {}
This gives your controller access to new lifecycle functions like viewWillSetupKeyboard, observable state like state.keyboardContext, services like services.actionHandler, and much more.
If you just want to use the default SystemKeyboard view, which mimics a native iOS keyboard and updates when the observable state changes, you only have to register your license key:
func viewDidLoad() {
super.viewDidLoad()
let license = try? setupPro(
withLicenseKey: "your-key",
locales: [...], // Define which locales to use
) { license in
// Make any license-based configurations here
}
}
To replace or customize the default SystemKeyboard, just override viewWillSetupKeyboard and call setupPro:
class KeyboardViewController: KeyboardInputViewControllerย {
override func viewWillSetupKeyboard() {
super.viewWillSetupKeyboard()
try? setupPro(
withLicenseKey: "your-key",
locales: [...], // Define which locales to use
licenseConfiguration: { license in
// Make any configurations and service adjustments here
},
view: { controller in
SystemKeyboard(
state: controller.state,
services: controller.services,
buttonContent: { $0.view },
buttonView: { $0.view },
emojiKeyboard: { $0.view },
toolbar: { _ in MyCustomToolbar() }
)
}
)
}
}
For more information, please see the getting started guide.
Supported Locales
KeyboardKit supports 63 keyboard-specific locales:
๐ฆ๐ฑ ๐ฆ๐ช ๐ฆ๐ฒ ๐ง๐พ ๐ง๐ฌ ๐ฆ๐ฉ ๐ณ๏ธ ๐ญ๐ท ๐จ๐ฟ ๐ฉ๐ฐ
๐ณ๐ฑ ๐ง๐ช ๐บ๐ธ ๐ฌ๐ง ๐บ๐ธ ๐ช๐ช ๐ซ๐ด ๐ต๐ญ ๐ซ๐ฎ ๐ซ๐ท
๐ง๐ช ๐จ๐ญ ๐ฌ๐ช ๐ฉ๐ช ๐ฆ๐น ๐จ๐ญ ๐ฌ๐ท ๐บ๐ธ ๐ฎ๐ฑ ๐ญ๐บ
๐ฎ๐ธ ๐ณ๏ธ ๐ฎ๐ฉ ๐ฎ๐ช ๐ฎ๐น ๐ฐ๐ฟ ๐น๐ฏ ๐น๐ฏ ๐น๐ฏ ๐ฑ๐ป
๐ฑ๐น ๐ฒ๐ฐ ๐ฒ๐พ ๐ฒ๐น ๐ฒ๐ณ ๐ณ๐ด ๐ณ๏ธ ๐ฎ๐ท ๐ต๐ฑ ๐ต๐น
๐ง๐ท ๐ท๐ด ๐ท๐บ ๐ท๐ธ ๐ท๐ธ ๐ธ๐ฐ ๐ธ๐ฎ ๐ช๐ธ ๐ฐ๐ช ๐ธ๐ช
๐น๐ท ๐บ๐ฆ ๐บ๐ฟ
KeyboardKit provides a basic keyboard layout and callout actions, whileย KeyboardKit Pro provides localized layouts, callouts and behaviors for all supported locales.
Features
KeyboardKit Pro extends KeyboardKit with pro features:
- โจ๏ธ Essentials - KeyboardKit Pro unlocks more essential tools, system keyboard previews, etc.
- ๐ฅ Actions - KeyboardKit Pro keeps the
.frequentemoji category in sync. - ๐ค AI Support - KeyboardKit Pro unlocks tools that are required for AI-based features.
- ๐ก Autocomplete - KeyboardKit Pro unlocks a local and a remote autocomplete.
- ๐ฏ Callouts - KeyboardKit Pro unlocks callout actions for every supported locale.
- ๐ค Dictation - KeyboardKit Pro unlocks pre-defined dictation services and a speech recognizer.
- ๐ Emojis - KeyboardKit Pro unlocks a powerful emoji keyboard.
- โจ๏ธ External Keyboards - KeyboardKit Pro unlocks ways to detect and react to external keyboards.
- ๐ Feedback - KeyboardKit Pro unlocks components for toogling feedback on & off.
- ๐ฃ Layout - KeyboardKit Pro unlocks input sets and layouts for every supported locale.
- ๐ Localization - KeyboardKit Pro supports all 63 locales.
- ๐๏ธ Previews - KeyboardKit Pro unlocks system keyboard previews that can be used in the app.
- โก๏ธ Proxy Extensions - KeyboardKit Pro unlocks ways to read the full document.
- ๐ Text Routing - KeyboardKit Pro unlocks views that let you type within the keyboard.
- ๐ญ Themes - KeyboardKit Pro unlocks a theme engine with many pre-defined themes.
Documentation
The online documentation has more information, articles, code examples, etc.
Demo App
The KeyboardKit repository has a demo app that shows how to display keyboard state, link to system settings, etc.
The demo app has two demo keyboards:
Keyboarduses KeyboardKit and a customizedSystemKeyboard.KeyboardProuses KeyboardKit Pro and enables all locales, autocomplete, themes, etc.
Just open and run the demo app in the Demo folder, then enable the keyboards under System Settings. Note that you need to enable full access for some features to work.
KeyboardKit App
If you want to try KeyboardKit Pro without having to write any code or build the demo app from Xcode, there is a KeyboardKit app in the App Store, that lets you try out many pro features.
Contact
Feel free to reach out if you have questions or if you want to contribute in any way:
- Website: keyboardkit.com
- Mastodon: @[email protected]
- Twitter: @getkeyboardkit
- E-mail: [email protected]
Commercially Licensed
KeyboardKit Pro is closed source. See the LICENSE file for more info.
Commercial licenses can be purchased from the website or from Gumroad.