Interface KeyboardManager

interface KeyboardManager {
    getKeyboardStatus(): KeyboardStatus;
    hideKeyboard(): boolean;
    showKeyboard(): void;
    subscribe(listener: ((status: KeyboardStatus) => void)): Unsubscribe;
}

Methods

  • Hides the keyboard.

    Returns boolean

    true if the keyboard was actually hidden, or false otherwise.

  • Shows the keyboard.

    Returns void