Today I am searching for this solution all day but not get the proper solution. and now you upload this video which like God's gift for me. thanks, bro its helps me a lot.
Seriously. Great video and great explanation in every video of yours. Finally got the best tutorials on flutter. This channel should hit billions of subscriber.
thank you for this wonderful content! a question though, how can I make the list tile clickable so that when I press a certain book it will lead me to an another page where the information of that book is displayed?
Thanks! Is there a way to extend this system to search for multiple words? Right now, if I search for "doe second" nothing shows up even if in my list there is a "john doe second".
Hello Johannes Milk, first I would like to thank you for sharing your knowledge, your videos are very clear, objective and productive. I would like to contribute a step of your code, using your example in developing a web application, I got an error when using the syntax: " Focus.of(context).requestFocus(FocusNode(),);", to fix it I used " FocusScope.of(context).requestFocus(FocusNode());", that was it, thanks.
Once again, thank you for all your very interesting videos. I'm happy to have finally think to send you a small reward by subscribing to your courses :-)
you are really amazing, please make a video tutorial Search data from firestore to flutter in streambuilder, I always failed when using Collection data then WHERE in ListTile disappeared
Sir i want to search in listview with data from sqflite? Please could you guide me or make a tutorial? I’m so worried, my assignment is almost completed except the searching functionality. I’ll be waiting for you
@@HeyFlutter thanks a lot for the help.. that link you shared did not have what i really wanted to implement.... but finally i managed to find a work-round my issue... i had to watch your video on "How To Overlay Widgets" and from there all i had to do is :- showbusinessList !=false ?buildOverly(): Container() ; and i went ahead and checked for the empty String on Query paramentor in the searchBusiness(String query) Function is so :- if(query != ""){ print("i have some Text"); setState(() { showbusinessList = true; }); }else { print("i have NO Text"); showbusinessList = false; } thanks a lot for these great videos... i think if you can find a better approach on this implementation than mine would be really great
Can ı send my query paramater with http.post and print result with this code ? I could not see if you re sending the paramaters or not, in my case ı need to send paramater in json to get response. Need to change results according to paramaters. Any idea would be helpful thanks
@@HeyFlutter Thank you, I watched both of the recommended videos above, but I did not see the search implementation with firebase firestore? Or am I missing something? Thank you.
Sir i want to perform a search by two field in each documents in firestore in flutter on only one text field Eg field 1 is code or field 2 is name Means to say person can search either by code or name
Great stuff!!! Can you show how to do the same with a Firebase Query/List? These days your videos do not contain much of FIREBASE alternatives. We need them. :-)
how to show errror when query not found? local json file! because when i try to show errror the files through itteration gives matched unmatched VALUES how to check if query not available only when the where itteration has finished? im finidng where number==( a particular number(query))
@@HeyFlutter my brother i was saying that i have a json file which i converted into queriable . now i want to search where "number"==query ; if query was found show query +( data associated with the query). and when the query is not matched it should display an error not found . but the problem was that as soon as where() method started itterating the 1st place where query was not matched it was giving error not found without searching for the query in the entire json file. "well thank you for your concern but i some how managed to fix it with *then()* method" . if u have any better sollution be sure to tell me thanks again .❤️
again a great tutorial ... AWESOME :D ... but ... wouldn't it have made more sense to use a json file for the local data instead of entering it manually?
Very nice tutorial! Btw how to we add date range filter on api requests? Like: I have data of entries in api, now I need to show all those data according to date range provided by user. Ex: StartDate: 2022-01-01, EndDate: 2022-02-20, I need to dipslay all these data and avoid others.
Thank You Vivek Jung Hamal! Follow this link: stackoverflow.com/questions/70894726/how-to-filter-items-consisting-within-a-date-range-from-datea-to-dateb-in-flut I hope you will get your answer 🙂
@@HeyFlutter Thank you,sir. solved. When i put something which is not on the list to the saerch bar i want it to return all the page instead of empty page
Can you have a tutorial of multiple strings in search ex. "Lorem","Lorem 1","Lorem 2","Lorem 3","Lorem 4"; and it shows the result of search all containing the data
Hello Please make a video on search in flutter app on different firestore collection For eg there are three categories of vehical light , heavy , medium and have different collection in firebase And how to search throughout the app (search any category in home page )
Hey, @hemanshpandya765 🙂 There can be various scenarios, it is good to know that you are aware of them. This tutorial is for beginners and cover the very basic implementation.