17 Flutter searchbar on appbar with icons

preview_player
Показать описание
#flutterAppBar #flutterAppBarIcon
Let's work on creating a cool #flutter project called country house #android application

Self Assessment Questions about this video:

In this project, we will use an API to get all the countries and its details and then we will use Google Map on Flutter to show the location of any country.

In this video, we will start from scratch and learn about #AppBar of #Scaffold widget in Flutter

Flutter is Google’s UI toolkit for building beautiful, natively compiled applications for mobile, web, and desktop from a single codebase.

Important links:

==================FOLLOW ME ==================

Subscribe for New Releases!

(ask me questions!)

--- QUESTIONS? ---

Leave a comment below and I or someone else can help you.
For quick questions you may also want to ask me on Twitter, I respond almost immediately.

Thanks for all your support!
Рекомендации по теме
Комментарии
Автор

Perfect way to solve the problem that i searched for a while

zetalukiest
Автор

I usually don't like and comment on programming tutorial video, this one was uniquely taught. Thanks.

niranjan
Автор

Hi. first of all thank you so much. I learned much thing from you. But i need ask you something. I hope you or someone else see this comment and answer me.I want to use this serach button to search data from API. But when i click search button Api's data are reloading because of setState. What should i do?

dogukanciftci
Автор

it would nice if you implement WhatsApp like search

officialismailshah
Автор

last icon change was un called for, just write
IconButton(
icon: !isSearching ? Icon(Icons.search) : Icon(Icons.cancel),
onPressed: (){
setState(() {
this.isSearching = !this.isSearching;
});
},
)
no need for two buttons, two callbacks, two setState calls.

asoftraiden
Автор

nice tutorial, but i need result searching please make video.
thanks

BrYarDJ
Автор

when i click the search button, it doesn't update right away. rather it updates on hot reloading. help !

vlr_sky
Автор

Dear friend, how are you? I don´t know why, but Flutter is connecting to iOS simulator anymore. Should I reinstall Flutter from zero?

MarcelloPato
Автор

Do a flutter build web. Then deploy the app somewhere. Then open the app in Android, on any browser. Try to do your search 3-4 times. Boom, it does not work.

AbhideepChakravarty