Keyboard blocking textinput with Scrollview and KeyboardAvoidingView in react native
问题 I am using RN 0.55.4 + Expo I tried to use KeyboardAvoidingView to my form but it doesnt change anything with or without KeyboardAvoidingView , its still blocking my form. I am using tcomb-form This is my current code return ( <View style={styles.container}> <KeyboardAvoidingView> <ScrollView> <View> <Header/> <View style={styles.inputs}> <LoginForm formType={formType} form={this.props.auth.form} value={this.state.value} onChange={self.onChange.bind(self)}/> {passwordCheckbox} </View>