Overview
KeyboardKit has ways to check the keyboard status, e.g. if a keyboard is enabled in System Settings, if Full Access is enabled, if a keyboard is actively being used, etc.
This information can be used to make the main app help users to set up their keyboard properly.
KeyboardKit Pro unlocks status-related views & utilities that can be used to quickly add this support to your keyboard app.
Namespace
KeyboardKit has a KeyboardStatus
namespace that contains status-related types and views, like the Label
that can be used to visualize a certain status value, as well as a complete status Section
.
Context
The observable KeyboardStatusContext
can be used to observe the state of any keyboard:
struct MyView: View {
@StateObject
var status = KeyboardStatusContext(bundleId: "com.myapp.keyboard")
var body: some View {
VStack {
Text("Enabled: \(status.isKeyboardEnabled.description)")
Text("Active: \(status.isKeyboardActive.description)")
Text("Full Access: \(status.isFullAccessEnabled.description)")
}
}
}
The context is observable, so any changes immediately causes the view to refresh. It also supports bundle ID wildcards, which let you can inspect multiple keyboards with a single instance:
@StateObject
var status = KeyboardStatusContext(bundleId: "com.myapp.*")
Status Inspector
The KeyboardStatusInspector
protocol that powers the context can be implemented by any type, to make it able to inspect the status of any keyboard at any time.
Views
A KeyboardStatus.Label
can display if a keyboard has been enabled, if Full Access is enabled, etc.
The view can be wrapped in a SwiftUI Link
to System Settings. It supports custom texts, icons, etc.
π KeyboardKit Pro
KeyboardKit Pro unlocks additional status views & utilities, like a complete KeyboardStatus.Section
:
The view is used by the KeyboardApp.HomeScreen
component, and can be used as a standalone view.
Documentation
The information on this page is shortened to be easier to overview. For more information see the online documentation, or the KeyboardKit Pro documentation.
Core Features
KeyboardKit is packed with features. You can upgrade to KeyboardKit Pro to unlock pro features.
Essentials
KeyboardKit provides essential features, utilities & views.
Actions
KeyboardKit makes it easy to handle keyboard actions.
App
KeyboardKit makes it easy to set up your app and its keyboard.
Callouts
KeyboardKit can show input and secondary action callouts.
Emojis
KeyboardKit defines emojis, emoji categories, skin tones, etc.
Feedback
KeyboardKit can trigger audio & haptic feedback.
Gestures
KeyboardKit can trigger & handle rich keyboard gestures.
Layout
KeyboardKit has fully dynamic & customizable layout engine.
Localization
KeyboardKit supports 70 locales, with localized resources.
Navigation
KeyboardKit lets you open urls and apps from the keyboard.
Previews
KeyboardKit has built-in support for SwiftUI previews.
Proxy Utilities
KeyboardKit lets the document proxy do a LOT more.
Settings
KeyboardKit has tools for in-app settings & System Settings.
Status
KeyboardKit detects if a keyboard is enabled, has full access, etc.
Styling
KeyboardKit lets you style your keyboards to great extent.
π Pro Features
KeyboardKit Pro unlocks powerful pro features to take your keyboard extension to the next level.
Essentials
KeyboardKit Pro unlocks more essential views & utilities.
AI Support
KeyboardKit Pro unlocks features that are needed for AI.
App
KeyboardKit Pro unlocks app-specific screens & views.
Autocomplete
KeyboardKit Pro unlocks local & remote autocomplete.
Callouts
KeyboardKit Pro unlocks callout actions for all locales.
Dictation
KeyboardKit Pro can trigger dictation from the keyboard.
Emoji Keyboard
KeyboardKit Pro unlocks an emoji keyboard & search capabilities.
External Keyboards
KeyboardKit Pro can detect if an external keyboard is being used.
Host
KeyboardKit Pro can identify and open specific host applications.
Layout
KeyboardKit Pro unlocks input sets & layouts for all locales.
Localization
KeyboardKit Pro unlocks support for 70 locales.
Previews
KeyboardKit Pro unlocks in-app keyboard & theme previews.
Proxy Utilities
KeyboardKit Pro makes the proxy able to read the full document.
Text Input
KeyboardKit Pro unlocks tools to let you type within the keyboard
Themes
KeyboardKit Pro unlocks a theme engine & many standard themes.