use-detect-keyboard-open
TypeScript icon, indicating that this package has built-in type declarations

0.4.0 • Public • Published

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

Package Sidebar

Install

npm i use-detect-keyboard-open

Weekly Downloads

5,718

Version

0.4.0

License

MIT

Unpacked Size

4.49 kB

Total Files

4

Last publish

Collaborators

  • straxico