mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
at main 12 lines 285 B view raw
1import React from 'react' 2import {Keyboard} from 'react-native' 3 4export function useOnKeyboardDidShow(cb: () => unknown) { 5 React.useEffect(() => { 6 const subscription = Keyboard.addListener('keyboardDidShow', cb) 7 8 return () => { 9 subscription.remove() 10 } 11 }, [cb]) 12}