Johnny Pachecp Asked: 2020-05-10 22:18:29 +0800 CST 2020-05-10 22:18:29 +0800 CST 2020-05-10 22:18:29 +0800 CST problem with screen positioning when keyboard is activated with React native 772 It happens that when the keyboard is activated, it seems to hover above my view and this hides the input. android 1 Answers Voted Best Answer Bruno Angeles 2020-06-29T09:52:57+08:002020-06-29T09:52:57+08:00 render() { return (<KeyboardAvoidingView style={styles.container} behavior='position' keyboardVerticalOffset={32}> {... tu vista ...} </KeyboardAvoidingView>); } It works fine for me now you can play with the keyboardVerticalOffset with positive or negative numbers as you see fit
It works fine for me now you can play with the keyboardVerticalOffset with positive or negative numbers as you see fit