Wallisson Pires

Results 2 comments of Wallisson Pires

I solved it like this: ``` function Chat() { const [keyboardHeight, setKeyboardHeight] = useState(0); useEffect(() => { const keyboardDidShowListener = Keyboard.addListener( "keyboardDidShow", event => { setKeyboardHeight(event.endCoordinates.height); }, ); const keyboardDidHideListener...