I am working on a react native project made using react native cli. The problem is that the TextInput gets highlighted when the keyboard is visible/active & it squeezes the view and mess up the layout which reminded me of KeyboardAvoidingView behaviour. Even though I don't use KeyboardAvoidingView in this project because all text inputs are in the upper half of the screen so they won't get covered by the keyboard.
<TextInput style={styles.inputText} multiline={false} onSubmitEditing={() => Keyboard.dismiss()} autoCapitalize="none" autoCorrect={false} keyboardType="number-pad" onChangeText={numberInputHandler} value={enteredValue}/> inputText: { borderBottomColor: "white", borderBottomWidth: 2, width: "30%", position: "absolute", bottom: Dimensions.get("window").height / 5, left: Dimensions.get("window").width / 5, color: "white", fontSize: Dimensions.get("window").height * 0.03, fontFamily: "Lato-Regular" } React Native Ver 0.61.5
Testing was done on an Android emulator and an Android physical device

