Created
October 28, 2021 15:38
-
-
Save whisher/8dc1f0f61e43e1f509d889b98cb7c146 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useState, useEffect } from "react"; | |
import { Keyboard, View, Dimensions, Platform, StyleSheet } from "react-native"; | |
const styles = StyleSheet.create({ | |
container: { | |
left: 0, | |
right: 0, | |
bottom: 0, | |
}, | |
}); | |
export const KeyboardSpacer = ({ style, onToggle = () => null }) => { | |
const [keyboardSpace, setKeyboardSpace] = useState(0); | |
useEffect(() => { | |
const updateKeyboardSpace = (event) => { | |
if (!event.endCoordinates) { | |
return; | |
} | |
const screenHeight = Dimensions.get("window").height; | |
const newKeyboardSpace = screenHeight - event.endCoordinates.screenY; | |
setKeyboardSpace(newKeyboardSpace); | |
onToggle(true, newKeyboardSpace); | |
}; | |
const showEvt = | |
Platform.OS === "android" ? "keyboardDidShow" : "keyboardWillShow"; | |
const showListener = Keyboard.addListener(showEvt, updateKeyboardSpace); | |
const resetKeyboardSpace = () => { | |
setKeyboardSpace(0); | |
onToggle(false, 0); | |
}; | |
const hideEvt = | |
Platform.OS === "android" ? "keyboardDidHide" : "keyboardWillHide"; | |
const hideListener = Keyboard.addListener(hideEvt, resetKeyboardSpace); | |
return () => { | |
showListener.remove(); | |
hideListener.remove(); | |
}; | |
}, []); | |
return <View style={[styles.container, { height: keyboardSpace }, style]} />; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment