You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I believe the way you are working with controlled/uncontrolled components here might be causing it. If the suggestion from @matthewkwong2 does not work for you or you are still having issue, please provide an example with the code from Example folder that I'll take a look.
Version
Tell us which versions you are using:
Expected behaviour
The TextInput field to accept the input text, and to be eventually passed as a prop to another scene.
State and helper function defined ...
state = {
task: ''
}
updateTask = (task) => {
this.setState({task: task});
}
...
Actual behaviour
The TextInput field lost focus at each character input. The same code works well for earlier versions e.g. version 4 betas.
Steps to reproduce
For non-obvious bugs, please fork this component, modify Example project to reproduce your issue and include link here.
1.
2.
3.
The text was updated successfully, but these errors were encountered: