#Google's Flutter Tutorials - AutoComplete TextField (coderzheaven.com)

preview_player
Показать описание
Welcome to Flutter Tutorials,

This video shows you how to create autocomplete textfield in flutter.

Get the Flutter AutoComplete Library from below link

Get the complete source code from here...

Please SUBSCRIBE my channel for more videos.
Hit the BELL icon for notifications when new videos are uploaded.

#fluttertutorials #fluttertextfield #flutterautcomplete
Рекомендации по теме
Комментарии
Автор

Awesome, saved me some cold sweat and deadline anxiety :)) Thank you!

gambar
Автор

Thanks for the video, it helped me a lot, but I have a question how I can bring the value of a user's id to be able to save it in a database, in the form I only need the id. Please I need help thank you very much, sorry for my English, I speak Spanish.

sebastianbeltrangonzalez
Автор

Hey, thanks for tutorial. But I have one problem. Suggestions doesnt show on first tap. But when I tap it second time its working okay. Do you know what could be problem?

TibQor
Автор

I got error please help

NoSuchMethodError: Class '_InternalLinkedHashMap<String, dynamic>' has no instance method 'cast' with matching arguments.

uududududf
Автор

Sir,
I have used autocomplete in a flutter. it's working properly but I have more than (lakh) records in the table. in autocomplete the whole table first loading and then get ready for searching, it takes to much time to load and populated in the textbox. I want to show the result bases on entering a value in realtime means when users entering the word it should be getting from the table, not from the autocomplete stored data. Thanks

arshadkhanSherani
Автор

Hi thank you for your video, but I have a problem. I'm doing all things like you and have error and can't understand why it didn't work

mikeprus
Автор

Hello, how i can set "enableInteractiveSelection: false" on TextField in the AutoCompleteTextField?

LiXang
Автор

I have a question, how can I show a snackbar or message that says "No matches found" instead of showing nothing when, after completing the field nothing is got by the query because no data matches with the search. Great video it all works

mauricioperezmoggle
Автор

I am facing two issues after implement this.
1. AutoCompleteTextField is rebuilding the widget where i am using futureBuilder
2. setState() called after dispose(): state: defunct, not mounted)

In my case, i am loading some categories in dropdown then searching items.

wtfwhattheflutter
Автор

how do you display the name in a textfield or text under the search

MrBlackmagicianX
Автор

Thanks for the tutorial, I am facing an issue while selecting an item, selected item is not showing in textfied, it is showing Instance of Dist(Dist is my model).
I have a different scenario, I am getting district list from db which is a Future<List<Dist>>, i have made some changes and used FutureBuilder for mapping data. Every thing is working as expected except the point i have mentioned. I don't know where i am mistaking. Any idea bro?

er.sandeepsinghsidhu
Автор

Can we build Call Recorder program with Flutter?

manojshilawat
Автор

That's a great tutorial. however, I'm getting error here.
Error: Could not resolve the package 'autocomplete_textfield' in
I don't know what's happening, I run pub get and nothing happens.

thiagocavalcante
Автор

how implement radius to AutoCompleteTextField?

oowead
Автор

After selecting the suggested item, the text gets the name i selected but the suggestions still appear instead of closing. Can you help me

subodharya
Автор

sir. thank you for your tutorial. but i found when i try to create a UI for autocomplete under ROW it show error!.
but if not under row or coloumn it work.

please your help.

kartzhai
Автор

but how can we get data from this AutoCompleteTextField?

djamilafiguir
Автор

how implement text onChanged to searchTextField?

oowead
Автор

It is my error thank you for help!


I/flutter (31783): ══╡ EXCEPTION CAUGHT BY FOUNDATION LIBRARY
I/flutter (31783): The following NoSuchMethodError was thrown while dispatching notifications for FocusNode:
I/flutter (31783): The method 'call' was called on null.
I/flutter (31783): Receiver: null
I/flutter (31783): Tried calling: call(true)
I/flutter (31783):
I/flutter (31783): When the exception was thrown, this was the stack:
I/flutter (31783): #0 Object.noSuchMethod
I/flutter (31783): #1 new closure>
I/flutter (31783): #2

I/flutter (31783): #3 FocusNode._notify

I/flutter (31783): #4 FocusManager._update

I/flutter (31783): (elided 10 frames from package dart:async)
I/flutter (31783):
I/flutter (31783): The FocusNode sending notification was:
I/flutter (31783): FocusNode#9de50(FOCUSED)
I/flutter (31783):

mikeprus