This was the best. Easy to understood method. Please create this kind of videos . It is very easy to understood everything. Other many videos are for advance user and not understandable by learner. I hope you got my point.
@@HeyFlutter just never stop doing your flutter video. I'm becoming an expert with them. Firebase, frontend, backend, error fixing, widget explanation, and courses upgrade. I'm sending power to you from France. ❤️🔥✨
Man!! Your map explanation was not only the best that I saw but the only one that I understood!!! Finally I know how to use and what is the purpose of .toList() at the end!! thanks God, ops, thanks Johannes!!!!!!!!!!!!! Viva la vida!!!
This is not the purpose of the .toList() at the end. The reason we need it is that .map() produces an Iterable type (MappedIterable) instead of a List type. So if you want a List type, you have to convert it to a list with .toList(); So if you only need an Iterable (not specifically a List), you don't have to put .toList(), it will produce a new object anyway.
Thanks, OroshiX! 🙂 Yes, you are right, thanks for sharing your knowledge, great explanation! In the end, the Iterable is the parent class of the List class, which supports stepping through the values of a list. At 2:09 I just mentioned that you need to call .toList() since our input was List and therefore our output should be also of the type List and not Iterable.
New to flutter here. I found something ready-made that I could use in my project, but I was having a hard time replicating it because I didn't understand the concept and the basics behind it. You made it crystal clear, and now I don't have to use the ready-made code; instead I can build it from scratch. Thank you so much. Of course, I subscribed and liked your video.
Great tutorial. pls make a video on Navigation for web and mobile. e.g web has sidebar navgation on click again and again every route inserted in stack. this is the big problem in flutter for web
Spread operator & Null-aware operator on Lists, Maps and Sets in Dart Spread operator & Cascade Operator What is the function of each? And when do we use each? also witch using with Map witch uing with list?
Hi Johannes, if I have duplicated objects in the list e.g. if you have two Hondas in your bikes list, how would you compress or remove the duplicate item?
Thanks, Gustavo Menezes! 🙂 You can remove duplicate items from list, like 2 Honda bikes in your case. Simply refer to this solution : stackoverflow.com/a/51446910
Thanks Johannes for all your videos and their simple explanations. Be careful, there is an error in your map explanation: This is not the purpose of the .toList() at the end. The reason we generally need it is that .map() produces an Iterable type (MappedIterable) instead of a List type. And generally, widgets accept only List type. So if you want a List type, you have to convert it to a list with .toList(). In this case, because you use it with [...iterable], you don't need a .toList() So if you only need an Iterable (not specifically a List), you don't have to put .toList(), it will produce a new object anyway. Moreover, this Iterable is lazy, so we can chain several calls without worry about performance. See here for the documentation: api.dart.dev/stable/2.12.2/dart-core/Iterable/map.html (it always produces a new object)
Thanks, OroshiX! 🙂 Yes, you are right, thanks for sharing your knowledge, great explanation! In the end, the Iterable is the parent class of the List class, which supports stepping through the values of a list. At 2:09 I just mentioned that you need to call .toList() since our input was List and therefore our output should be also of the type List and not Iterable.
Hello, Igor miranda souza! Follow this link: stackoverflow.com/questions/63757050/flutter-replacing-an-item-in-a-list, I hope it will solve your problem. Thank You 🙂
This might help you :)
👉 12 Week Flutter Training from Newbie to Expert: heyflutter.com
Source Code: github.com/JohannesMilke/list_utility_example
Flutter Layout Basics Tutorial: ua-cam.com/video/yYxueTNIDlA/v-deo.html
Stateful Widget Lifecycle Tutorial: ua-cam.com/video/FL_U8ORv-2Q/v-deo.html
Hello World Flutter App Tutorial: ua-cam.com/video/UPSsxGQRIzs/v-deo.html
Add Custom Fonts Tutorial: ua-cam.com/video/Gf-cyiWlmEI/v-deo.html
Search & Filter In ListView Tutorial: ua-cam.com/video/oFZIwBudIj0/v-deo.html
App Bar Tutorial: ua-cam.com/video/dHBF4IJZvHk/v-deo.html
Search Bar & Search Delegate Tutorial: ua-cam.com/video/RaACAwvZ61E/v-deo.html
TextField Tutorial: ua-cam.com/video/C5hJIKCTrvk/v-deo.html
Buttons 2.0 Tutorial: ua-cam.com/video/ytlDKJBxW_A/v-deo.html
Form & TextFormField Tutorial: ua-cam.com/video/2rn3XbBijy4/v-deo.html
SafeArea VS AppBar Tutorial: ua-cam.com/video/4O16fHaJc7E/v-deo.html
Sortable DataTable Tutorial: ua-cam.com/video/SJxByHLs72k/v-deo.html
Selectable DataTable Tutorial: ua-cam.com/video/HZD-0zgpuak/v-deo.html
Create PDF Invoice Tutorial: ua-cam.com/video/z_5xkhEkc5Y/v-deo.html
Lots of appreciation and love from India🇮🇳
This was the best. Easy to understood method. Please create this kind of videos . It is very easy to understood everything. Other many videos are for advance user and not understandable by learner. I hope you got my point.
Thanks for the idea, @rv9570! 🙂 I have added it to my list of ideas for future videos!
You're literally a genius.
@@HeyFlutter just never stop doing your flutter video. I'm becoming an expert with them. Firebase, frontend, backend, error fixing, widget explanation, and courses upgrade. I'm sending power to you from France. ❤️🔥✨
Man!! Your map explanation was not only the best that I saw but the only one that I understood!!! Finally I know how to use and what is the purpose of .toList() at the end!! thanks God, ops, thanks Johannes!!!!!!!!!!!!! Viva la vida!!!
This is not the purpose of the .toList() at the end. The reason we need it is that .map() produces an Iterable type (MappedIterable) instead of a List type. So if you want a List type, you have to convert it to a list with .toList();
So if you only need an Iterable (not specifically a List), you don't have to put .toList(), it will produce a new object anyway.
Thanks, OroshiX! 🙂 Yes, you are right, thanks for sharing your knowledge, great explanation! In the end, the Iterable is the parent class of the List class, which supports stepping through the values of a list. At 2:09 I just mentioned that you need to call .toList() since our input was List and therefore our output should be also of the type List and not Iterable.
Thanks, Johannes. Straightforward, comprehensive, and logical.
Great Brother, you are the best teacher I ever had.....
New to flutter here. I found something ready-made that I could use in my project, but I was having a hard time replicating it because I didn't understand the concept and the basics behind it. You made it crystal clear, and now I don't have to use the ready-made code; instead I can build it from scratch. Thank you so much. Of course, I subscribed and liked your video.
It's a very helpful, fantastic explanation vedio
Love u So Much Brother You Save my Life Always
You are better and more efficient teacher. :)
You are very helpful 👍
very useful video!
Thank you, Johan. I really enjoyed this video.
Thank you so much for your video you have saved my from a big problem
Glad I could be of help, Thank you Essa Jamal! 😊
Johannes Milke Rocks...🙏🙏
So helpful 🔥
simple and useful, good job
Thanks a lot Sir
Thanks for the info! Streightforward and helpful
Awesome Content. To the point and useful.
Bro! How to retern & show on ListView this List "Bike" by/with new "horspover" value ... what you show on 14:33 by expand ???
Thank you!
Hi Louis is jy van RSA?, ek is Pierre
@@pierremarais7669 Inderdaad. Was lanklaas so opgewonde oor iets soos wat ek is oor Flutter.
Great tutorial. pls make a video on Navigation for web and mobile. e.g web has sidebar navgation on click again and again every route inserted in stack. this is the big problem in flutter for web
Thank you
thanks
Great!
Spread operator & Null-aware operator on Lists, Maps and Sets in Dart
Spread operator & Cascade Operator What is the function of each?
And when do we use each? also witch using with Map witch uing with list?
Hello, bro. Do you have videos for testing? If you haven't, can you give me the source, please😊
Thanks, Qadir! 🙂 Nope, I don't have testing videos. Simply read more about it here: flutter.dev/docs/testing
Hi Johannes, if I have duplicated objects in the list e.g. if you have two Hondas in your bikes list, how would you compress or remove the duplicate item?
@@HeyFlutter many thx
Thanks, Gustavo Menezes! 🙂
You can remove duplicate items from list, like 2 Honda bikes in your case. Simply refer to this solution : stackoverflow.com/a/51446910
Very usefull
Thanks Johannes for all your videos and their simple explanations.
Be careful, there is an error in your map explanation:
This is not the purpose of the .toList() at the end. The reason we generally need it is that .map() produces an Iterable type (MappedIterable) instead of a List type. And generally, widgets accept only List type. So if you want a List type, you have to convert it to a list with .toList(). In this case, because you use it with [...iterable], you don't need a .toList()
So if you only need an Iterable (not specifically a List), you don't have to put .toList(), it will produce a new object anyway. Moreover, this Iterable is lazy, so we can chain several calls without worry about performance.
See here for the documentation: api.dart.dev/stable/2.12.2/dart-core/Iterable/map.html (it always produces a new object)
Thanks, OroshiX! 🙂 Yes, you are right, thanks for sharing your knowledge, great explanation! In the end, the Iterable is the parent class of the List class, which supports stepping through the values of a list. At 2:09 I just mentioned that you need to call .toList() since our input was List and therefore our output should be also of the type List and not Iterable.
how can I replace an item in a list with another item in the same index? (ie delete an item and place another item in the same place as it was)
@@HeyFlutter Thanks, it was a big help! I'm from Brazil and I love your videos
Hello, Igor miranda souza! Follow this link: stackoverflow.com/questions/63757050/flutter-replacing-an-item-in-a-list, I hope it will solve your problem. Thank You 🙂
cool
why is there no automatic translation into Russian (
Thank you, Flutter_kn! 🙂 Yep, this is strange, normally UA-cam is generating these captions automatically.
👌