New RN build from scratch. Only the code below exists.
Xcode version 12.0.1iOS 14RN 0.63.3
Scrolling and tapping makes TextInput jump to random places.
export default class TextField extends Component { constructor(){ super(); this.state={textInput: ''} } handleChangeText = (textInput) => { this.setState({ textInput }); } return (<View style={{flex: 1, backgroundColor: 'blue'}}><TextInput style={{marginTop: 100, height: 300, backgroundColor: 'white'}} value={this.state.textInput} multiline={true} onChangeText={this.handleChangeText}></TextInput> </View> )}
Please view gif for example:https://gph.is/g/ZdXD55W