Interface KeyboardManager

interface KeyboardManager {
    getKeyboardHeight(): number;
    hideKeyboard(): void;
    showKeyboard(): void;
    subscribe(listener: ((animation: TweenAnimation) => void)): Unsubscribe;
}

Methods

  • Returns the current height of the software keyboard.

    If 0 then the keyboard is hidden, if greater than 0 then the keyboard is shown.

    Returns number

  • Hides the software keyboard.

    Returns void

  • Shows the software keyboard.

    Returns void