KeyboardInputMode
There are several input modes that can be extended throughout the project. Known values include:
- "skip": No keyboard — the currently open keyboard remains open.
- "none": No keyboard — the currently open keyboard is closed.
- "numeric": Numeric keyboard for integers.
- "decimal": Numeric keyboard for possible decimal values.
- "text": Text keyboard, as a fallback for unknown input modes.
[ Type ]
type KeyboardInputMode = 'skip' | 'none' | Exclude<keyof InputModeMapping, number>;Schema: tchmi:framework#/definitions/Inputmode
See also the documentation on the InputModeMapping and number types.
![]() | Available from 1.8 |
