We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updating local state through onChangeText, clears the input anytime I type.
const [item, setItem] = useState("") <Autocomplete key={uuidv4()} inputStyle={styles.inputContainer} placeholder="building" onChangeText={text => setItem(text)} // <-- This is not working handleSelectItem={(item, id) => console.log(item, id)} data={items} minimumCharactersCount={2} valueExtractor={item => item} />
The text was updated successfully, but these errors were encountered:
onChangeText={(text) => setItem(text)} change to this
Sorry, something went wrong.
No branches or pull requests
Updating local state through onChangeText, clears the input anytime I type.
The text was updated successfully, but these errors were encountered: