flutter-autocomplete-textfield icon indicating copy to clipboard operation
flutter-autocomplete-textfield copied to clipboard

An autocomplete Textfield for flutter

Results 36 flutter-autocomplete-textfield issues
Sort by recently updated
recently updated
newest added

validator: (value) { if (value.isEmpty) { return "msg ...."; } return null; },

enhancement

Hi, Your textfield is very usefull, but how could we make the suggestions scrollable ? Thank you in advance,

Would be great if someone adds custom alignment support for input and hint.

your plugin is awesome man Thank you, what if my suggestions comes from server so i had to display what the server returns?

Hi, I'm using AutoCompleteTextField in a StatefulWidget and have defined a function to initialize it like this: ` _buildTextField() { textField = new AutoCompleteTextField( decoration: new InputDecoration( labelText: "Produkt", hintText:...

My AutocompleteTextField widget doesn't changes after some code inside decoration property changes (after setState() is called in other widget). My hintText is not changing after the variable "nextSub" change it's...

I can initialize textfield controller in init function. but can't do with autocomplete textfield. it shows error while running code. this line: ` searchTextField.textField.controller.text = widget.custno;` log: `[ERROR:flutter/lib/ui/ui_dart_state.cc(157)] Unhandled Exception:...

Can we start showing suggestions immediately after focus? Currently suggestions will only appear if the user starts typing which is great but then having an option to display suggestions on...

i'm using the autocomplete, and i can't scroll the options that gave to me, and i know that has more information... Is there a way to let scrollable the itemBuilder?...

I am working on project based on the flutter. My requirement is like I will have an text box by entering 4 letters in that text box I need to...