Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

use-detect-keyboard-open

straxico43.4kMIT0.4.0TypeScript support: included

a tiny React hook which allows you to track state of open/close soft keyboard in mobile

react, hooks, hook, react-hooks, keyboard, resize, soft-keyboard, sizes, typescript, responsive

readme

use-detect-keyboard-open

sandbox

Edit smoosh-water-ysj3w

install

yarn add use-detect-keyboard-open

or

npm i use-detect-keyboard-open

See it in Action

example

import useDetectKeyboardOpen from "use-detect-keyboard-open";
export default function App() {
  const isKeyboardOpen = useDetectKeyboardOpen();
  return (
    <div>
      <h2>{`soft keyboard is ${isKeyboardOpen ? "open" : "close"}`}</h2>
      <input defaultValue="click here for open keyboard" />
    </div>
  );
}

options

useDetectKeyboardOpen( minKeyboardHighte , defalutValue )

  • defalutValue : boolean
    • for initial value
    • default null
    • optional
  • minKeyboardHighte : number
    • for minimom hight of keyboard for detect is open
    • default 300
    • optional