19 Flutter Filter List Data with where query

  Рет қаралды 51,605

Bitfumes - AI & LLMs

Bitfumes - AI & LLMs

Күн бұрын

Пікірлер: 36
@wesleybarnes5376
@wesleybarnes5376 4 жыл бұрын
After 12 hours of searching, I find this breath of fresh air to help me do what I need to do, thank you. :-) Made my day
@danielenqvist725
@danielenqvist725 4 жыл бұрын
On a same boat...
@supersubra
@supersubra 4 жыл бұрын
superb. I was searching for this search facility for more than 4 months and by God's grace, I landed upon this yesterday. Thanks a lot.
@himanshudhakecha1789
@himanshudhakecha1789 Жыл бұрын
its so simply he has just explained everything step by step
@rafatansari112
@rafatansari112 4 жыл бұрын
Exactly what I was looking for!
@pravinromano8774
@pravinromano8774 3 жыл бұрын
thank you brother for such a wonder explanation bro,it is very helpful for my entire team and thank you once again brother
@matthewslaton1366
@matthewslaton1366 3 жыл бұрын
thanks for sharing, great video! i'll be back
@ozonewagle
@ozonewagle 3 жыл бұрын
hey dear how can i thank you, i was searching this for so long time, only i was able to grasp your video a lot of thanks thanks a lot lot
@pamelaloyola4824
@pamelaloyola4824 3 жыл бұрын
You´re the best!! Thanks a lot again :'D
@victorboesen3837
@victorboesen3837 4 жыл бұрын
Great video! Thank you very much for sharing;)
@Bitfumes
@Bitfumes 4 жыл бұрын
Thanks for watching! Now working on new flutter big course
@sanogosy7683
@sanogosy7683 2 жыл бұрын
Super, good job. It's so simple but so amazing.
@Bitfumes
@Bitfumes 2 жыл бұрын
Thank you! Cheers!
@d.ia.s
@d.ia.s 4 жыл бұрын
Thank you so much for this video, you helped me out a lot!
@nittansharma3918
@nittansharma3918 2 жыл бұрын
one video on your android studio customisation
@dawidniegrebecki2205
@dawidniegrebecki2205 4 жыл бұрын
Thank you for your video!
@Bitfumes
@Bitfumes 4 жыл бұрын
Always welcome
@darshankhadse880
@darshankhadse880 3 жыл бұрын
Simply better got the logic 👍🏻👍🏻
@asfandyarahmad7109
@asfandyarahmad7109 2 жыл бұрын
nice work please can you help me that how we can avoid to send duplicate value to fire store ????
@neolamanite
@neolamanite 3 жыл бұрын
Thank you!!!!!!!!!
@thedembelecoder5776
@thedembelecoder5776 3 жыл бұрын
thanks bb u are great
@davidperez008
@davidperez008 4 жыл бұрын
Amazing, thanks!
@Bitfumes
@Bitfumes 4 жыл бұрын
Coming up next, super big flutter premium course with practical apps
@jasonwilliams676
@jasonwilliams676 4 жыл бұрын
Thank you! How could I implement a search feature like this on a list of widgets that I made? I used a gridview to align and layout the widgets.
@moatazhelwa9987
@moatazhelwa9987 4 жыл бұрын
best of the best
@Bitfumes
@Bitfumes 4 жыл бұрын
Thanks for your love and support, keep learning. Follow bitfumes on twitter.com/bitfumes or facebook.com/Bitfumes to get the latest updates. bitfumes.com
@ozonewagle
@ozonewagle 3 жыл бұрын
hey bro can you help me on one thing, searching is working, but i used to have delete items from list view which used to be instantly updated, but after implementing this search, the deleted items keeps showing, only after restarting application they go.
@MarcelloPato
@MarcelloPato 4 жыл бұрын
I am enjoying this series very much. Now, I wanna know why in Flutter we call arrays as lists? It is not the same thing? Thanks bro!
@Bitfumes
@Bitfumes 4 жыл бұрын
Yes, it is the same thing, but every language has its vocabulary. So keep 'array' work in your head and work with 'list'. haha
@MarcelloPato
@MarcelloPato 4 жыл бұрын
@@Bitfumes cool! Thanks!
@usmanahmednaushahi4922
@usmanahmednaushahi4922 4 жыл бұрын
Everything is working fine, but ListView is not updating on onChanged. Although I am using setstate, but it is still not filtering the data. Note(The List is being filtered as I have printed it. The only problem is with the screen as it is not updating) import 'package:flutter/material.dart'; import 'package:provider/provider.dart'; import 'package:travel_together_passenger/Models/user.dart'; import 'package:travel_together_passenger/Screens/User_Available_Carpools_TILE.dart'; class User_AvailableCarpools_LIST extends StatefulWidget { @override _User_AvailableCarpools_LISTState createState() => _User_AvailableCarpools_LISTState(); } class _User_AvailableCarpools_LISTState extends State { @override Widget build(BuildContext context) { final checkcarpools = Provider.of(context) ?? []; final availablecarpools = checkcarpools.where((element) => element.seats > 0).toList() ?? []; List filteredcarpools = checkcarpools.where((element) => element.seats > 0 ).toList() ?? []; return Scaffold( body: Column( children: [ Expanded( child: TextField( decoration: InputDecoration(hintText: 'Search..'), onChanged: (text) { setState(() { filteredcarpools = availablecarpools .where((element) => element.pickupaddress .toLowerCase() .contains(text.toLowerCase())) .toList(); }); }, )), Expanded( flex: 10, child: ListView.builder( itemCount: filteredcarpools.length, itemBuilder: (context, index) { return User_AvailableCarpools_TILE(filteredcarpools[index]); }, ), ), ], ), ); } }
@bnedyalkov
@bnedyalkov 4 жыл бұрын
Could you please tell me what font you use in VSCode!?
@ismailduo
@ismailduo 3 жыл бұрын
how did you change countries to filteredcountries with a single keyshortcuts in 1:56?
@sageat1242
@sageat1242 2 жыл бұрын
How can we perform search operation for realtime database firebase
@TheChartwhisperers
@TheChartwhisperers 2 жыл бұрын
how to implement search with .where() on two properties
@osamaremlawi7147
@osamaremlawi7147 3 жыл бұрын
Do not use List1 = List2, use List1 = List.from(List2);
20 Flutter Integrate Google Map
9:20
Bitfumes - AI & LLMs
Рет қаралды 4,2 М.
The TRIPLE FOLDING phone has a Problem.
12:54
Mrwhosetheboss
Рет қаралды 1 МЛН
Will A Basketball Boat Hold My Weight?
00:30
MrBeast
Рет қаралды 117 МЛН
Smart Sigma Kid #funny #sigma
00:14
CRAZY GREAPA
Рет қаралды 79 МЛН
the balloon deflated while it was flying #tiktok
00:19
Анастасия Тарасова
Рет қаралды 31 МЛН
Não sabe esconder Comida
00:20
DUDU e CAROL
Рет қаралды 50 МЛН
(Ep 54) Search List View With Flutter & Firestore
20:34
1ManStartup
Рет қаралды 30 М.
Solving one of PostgreSQL's biggest weaknesses.
17:12
Dreams of Code
Рет қаралды 207 М.
List Method .where() in Dart & Flutter
6:42
Flutter Explained
Рет қаралды 23 М.
Top 30 Flutter Tips and Tricks
6:50
Flutter Mapp
Рет қаралды 564 М.
FutureBuilder In Flutter - Building Lists with JSON Data
15:30
Samarth Agarwal
Рет қаралды 253 М.
Top 12 Flutter Tips & Tricks
9:32
Fireship
Рет қаралды 270 М.
Flutter API Integration || How to Filter Data From API
10:31
Next.js 15 Breakdown (Everything You Need To Know)
18:10
Web Dev Simplified
Рет қаралды 13 М.
How to Filter List | List View Builder with Chips in Flutter
24:18
AB Nation Programmers
Рет қаралды 18 М.
Will A Basketball Boat Hold My Weight?
00:30
MrBeast
Рет қаралды 117 МЛН