react native 키보드 높이 구하기


react native 키보드 높이 구하기

임포트 import { Keyboard } from 'react-native'; 2. 이벤트 리스너 useEffect(() => { const showSubscription = Keyboard.addListener('keyboardDidShow', e => { //키보드가 show 했을 때 //this._keyboardDidShow 함수 실행 Height= e.endCoordinates.height;//를 사용하면 키보드 높이를 구할 수 있다 }); const hideSubscription = Keyboard.addListener('keyboardDidHide', e => { //키보드가 Hide 했을 때 //this._keyboardDidHide 함수 실행 }); return () => { showSubscription.remove(); hideSubscription.remove(); }; }, []);...



원문링크 : react native 키보드 높이 구하기