KeyboardKit helps you create custom keyboards for iOS and iPadOS, using Swift and SwiftUI. It extends Apple's native keyboard APIs and provides you with more functionality.
KeyboardKit lets you create keyboards that mimic native iOS keyboards in a few lines of code.
These keyboards can be customized to change input keys, layout, design, behavior etc. You can also use completely custom views.
KeyboardKit can be installed with the Swift Package Manager:
https://github.com/KeyboardKit/KeyboardKit.git
KeyboardKit supports iOS 14
, macOS 11
, tvOS 14
and watchOS 7
, although some features are unavailable on some platforms.
KeyboardKit is localized in 60+ keyboard-specific locales:
๐ฆ๐ฑ ๐ฆ๐ช ๐ฆ๐ฒ ๐ง๐พ ๐ง๐ฌ ๐ฆ๐ฉ ๐ณ๏ธ ๐ญ๐ท ๐จ๐ฟ ๐ฉ๐ฐ
๐ณ๐ฑ ๐ง๐ช ๐บ๐ธ ๐ฌ๐ง ๐บ๐ธ ๐ช๐ช ๐ซ๐ด ๐ต๐ญ ๐ซ๐ฎ ๐ซ๐ท
๐ง๐ช ๐จ๐ญ ๐ฌ๐ช ๐ฉ๐ช ๐ฆ๐น ๐จ๐ญ ๐ฌ๐ท ๐บ๐ธ ๐ฎ๐ฑ ๐ญ๐บ
๐ฎ๐ธ ๐ฎ๐ฉ ๐ฎ๐ช ๐ฎ๐น ๐ฐ๐ฟ ๐น๐ฏ ๐น๐ฏ ๐น๐ฏ ๐ฑ๐ป ๐ฑ๐น
๐ฒ๐ฐ ๐ฒ๐พ ๐ฒ๐น ๐ฒ๐ณ ๐ณ๐ด ๐ฎ๐ท ๐ต๐ฑ ๐ต๐น ๐ง๐ท ๐ท๐ด
๐ท๐บ ๐ท๐ธ ๐ท๐ธ ๐ธ๐ฐ ๐ธ๐ฎ ๐ช๐ธ ๐ฐ๐ช ๐ธ๐ช ๐น๐ท ๐บ๐ฆ
๐บ๐ฟ
KeyboardKit comes with basic input sets, layouts and secondary callout actions.
KeyboardKit comes packed features to help you build amazing and powerful keyboards:
- โจ๏ธ Essentials - KeyboardKit comes with a bunch of essential features and types.
- ๐ฅ Actions - KeyboardKit has keyboard actions like characters, actions, etc.
- ๐ค AI Support - KeyboardKit has capabilities that are needed for AI.
- ๐ก Autocomplete - KeyboardKit can perform autocomplete and autocorrect.
- ๐ค Buttons - KeyboardKit can style any view as a keyboard button.
- ๐ฏ Callouts - KeyboardKit can show input and secondary callouts.
- ๐ Colors - KeyboardKit defines a bunch of keyboard-related colors.
- ๐ฑ Device Utilities - KeyboardKit has a bunch of device-specific utilities.
- ๐ค Dictation (BETA) - KeyboardKit can perform dictation from the keyboard.
- ๐ Emojis - KeyboardKit defines an emoji type with a lot of information.
- ๐ Feedback - KeyboardKit can trigger audio and haptic feedback.
- ๐ Gestures - KeyboardKit has rich, keyboard-specific gestures.
- ๐ผ๏ธ Images - KeyboardKit defines a bunch of keyboard-related images.
- ๐ฃ Layout - KeyboardKit defines dynamic input sets and keyboard layouts.
- ๐ Localization - KeyboardKit supports 60+ locales.
- ๐บ๏ธ Navigation - KeyboardKit lets you open urls and other apps.
- ๐ Previews - KeyboardKit lets you preview views and components in SwiftUI.
- โก๏ธ Proxy Extensions - KeyboardKit makes
UITextDocumentProxy
do a LOT more. - โ๏ธ Settings - KeyboardKit has a bunch of settings tools.
- ๐ฉบ State - KeyboardKit lets you detect if a keyboard is enabled, has full access, etc.
- ๐จ Styling - KeyboardKit lets you style your keyboards to great extent.
- ๐ Text Routing - KeyboardKit kan route text to other places.
KeyboardKit Pro extends these features with many pro features, such as fully localized keyboards, autocomplete, emoji keyboards, dictation, etc.
The online documentation has a getting-started guide that helps you get started with KeyboardKit.
After installing KeyboardKit, just import KeyboardKit
and make your KeyboardViewController
inherit KeyboardInputViewController
instead of UIInputViewController
:
import KeyboardKit
class KeyboardController: KeyboardInputViewController {}
This gives your controller access to new lifecycle functions, observable state, services, and much more.
KeyboardKit will by default use a standard SystemKeyboard
. If you just want to use this standard view, you donโt have to do anything more.
To customize or replace the standard view, you can override viewWillSetupKeyboard()
and call any of the setup
functions with a custom view:
class KeyboardViewController: KeyboardInputViewController {
override func viewWillSetupKeyboard() {
super.viewWillSetupKeyboard()
setup { controller in
SystemKeyboard(
state: controller.state,
services: controller.services,
buttonContent: { $0.view },
buttonView: { $0.view },
emojiKeyboard: { $0.view },
toolbar: { _ in MyCustomToolbar() }
)
}
}
}
The setup view builder provides an unowned
controller reference to help avoiding memory leaks. Use it to access its state and services, and avoid passing it around.
For more information, please see the online documentation and getting-started guide.
The online documentation has articles, code examples etc.
KeyboardKit Pro extends KeyboardKit with a lot of Pro features, such as localized keyboards and services, autocomplete, dictation, pro emoji features (keyboards, categories, versions, skintones, etc).
KeyboardKit Pro lets you create fully localized keyboards with a single line of code.
The repository has a demo app that shows how to display keyboard state, link to system settings, etc. It has two keyboards:
Keyboard
uses KeyboardKit and a standardSystemKeyboard
.KeyboardPro
uses KeyboardKit Pro and aSystemKeyboard
with 60+ locales, autocomplete, 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, like haptic feedback.
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][app-store] in the App Store.
KeyboardKit is open-source and completely free, but you can sponsor this project on GitHub Sponsors, upgrade to KeyboardKit Pro or get in touch for freelance work, paid support etc.
Feel free to reach out if you have questions or if you want to contribute in any way:
- Website: keyboardkit.com
- Mastodon: @keyboardkit@techhub.social
- Twitter: @getkeyboardkit
- E-mail: info@keyboardkit.com
KeyboardKit is available under the MIT license. See the LICENSE file for more info.