Skip to content
New issue

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

Controller is not getting updated on textsubmitted #125

Open
siddesh3101 opened this issue Apr 2, 2023 · 1 comment
Open

Controller is not getting updated on textsubmitted #125

siddesh3101 opened this issue Apr 2, 2023 · 1 comment

Comments

@siddesh3101
Copy link

textField = SimpleAutoCompleteTextField(
key: key,
decoration: InputDecoration(
border: OutlineInputBorder(),
),
// decoration: InputDecoration(errorText: "Beans"),
controller: contoller,
suggestions: _data,
textChanged: (text) => currentText = text,
clearOnSubmit: true,
textSubmitted: (text) {
textField!.controller!.text = "Sid";
contoller.text = "s";
setState(() {
if (text != "") {
print(contoller.text);
added.add(text);
}
});
});

@mauricev
Copy link

I can confirm this widget is not working as advertised.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants