Hi,
when running the example i get "Cannot read property 'height' of undefined" in 'keyboardWillShow'.
The solution for this is to add an if (e.endCoordinates && e.endCoordinates.height) so the function now looks like this:
keyboardWillShow (e) {
if (e.endCoordinates && e.endCoordinates.height) {
let newSize = Dimensions.get('window').height - e.endCoordinates.height;
this.setState({visibleHeight: newSize})
}
}
And BTW thanks for this project!