Top 16 Dart Tips and Tricks Every Flutter Developer Should Know

  Рет қаралды 59,989

Andrea Bizzotto

Andrea Bizzotto

Күн бұрын

Пікірлер: 55
@RetroPortalStudio
@RetroPortalStudio 4 жыл бұрын
This is a gem 💙💎
@CodeWithAndrea
@CodeWithAndrea 4 жыл бұрын
Thanks a lot. I’m a fan of your channel, so it’s great to hear this.
@skarrin6207
@skarrin6207 4 жыл бұрын
Oh hi paras
@ethan-youtubetips4325
@ethan-youtubetips4325 4 жыл бұрын
You got me watching the whole video. Thumbs up 👍
@rayanfernandes2631
@rayanfernandes2631 4 жыл бұрын
Woah man that was pretty good and consise demonstration of dart ... I learnt a lot of good stuff today!
@DenzilFerreira
@DenzilFerreira 4 жыл бұрын
This is a masterpiece!
@workflop4117
@workflop4117 4 жыл бұрын
Thanks for sharing Andrea
@delikinVlogs
@delikinVlogs 3 жыл бұрын
GOLD!!! THIS IS GOLD!!!
@vibinu7589
@vibinu7589 4 жыл бұрын
Best flutter channel in KZbin!🤩
@joranmulderij
@joranmulderij 3 жыл бұрын
This is amazing! They are all very useful. 6 of them where at least partially new to me.
@sureshchakma1145
@sureshchakma1145 3 жыл бұрын
I bought your dart course from Udemy... and i am practicing... thanks you
@mrunfunny
@mrunfunny 4 жыл бұрын
Great Video. Keep it up Andrea.
@jjsebastianfuertes
@jjsebastianfuertes 4 жыл бұрын
Great content! 💯
@Pedro5antos_
@Pedro5antos_ 2 жыл бұрын
Thanks for sharing!
@MisterNorthernCanuck
@MisterNorthernCanuck 3 жыл бұрын
Absolute gold.
@denzell5070
@denzell5070 4 жыл бұрын
Thank you. I'm definitely purchasing the course.
@yogenp
@yogenp 4 жыл бұрын
Love this. Awesome content.
@alexey5174
@alexey5174 4 жыл бұрын
Useful, thanks!
@mao_716
@mao_716 3 жыл бұрын
Awesome!
@nicolasdupere
@nicolasdupere 4 жыл бұрын
So, so good! Thanks!
@yankodiev
@yankodiev 3 жыл бұрын
Excellent! 👍
@ianpaul9262
@ianpaul9262 3 жыл бұрын
Very informative video!
@Fanaro
@Fanaro 4 жыл бұрын
The chaptering really helps. 👍
@raul286162
@raul286162 4 жыл бұрын
This information is gold ❣️
@ahteramkhattak2243
@ahteramkhattak2243 3 жыл бұрын
nice ... very informative
@bm830810
@bm830810 4 жыл бұрын
great tips, many thanks
@abdelouahedmedjoudja2163
@abdelouahedmedjoudja2163 4 жыл бұрын
Great video thanks
@devsbuddy
@devsbuddy 2 жыл бұрын
What a coincidence I just had to show data from the map in UI and I was spitting each entry manually suddenly map iteration part comes and I used it instead Thank You, Creator.
@mr.thorcoder150
@mr.thorcoder150 4 жыл бұрын
Professional 🔥
@fahadkhatri4318
@fahadkhatri4318 4 жыл бұрын
Excellent 👍 👍 👍
@3mro_coding
@3mro_coding 3 жыл бұрын
Did you show ur localhost as https how? Adding self signed ssl? To the vhost?
@rizalhadiyansah
@rizalhadiyansah 4 жыл бұрын
Coooool!!!! Thanks!!!'❤
@cromuelbarut9859
@cromuelbarut9859 6 ай бұрын
I learned a lot
@LinJheYi
@LinJheYi 4 жыл бұрын
Unfortunately Tip #2 is wrong, Future.wait didn't run Futures concurrently, it just run them sequentially in current isolate/event loop, and give you all result after every Future is finished. If you want real concurrency, you should spawn new isolates. For example: void main() async { await Future.wait([ Future(() { for (int i = 0; i < 5; i++) { print(i); } }), Future(() { for (int i = 0; i < 5; i++) { print(i); } }), Future(() { for (int i = 0; i < 5; i++) { print(i); } }), ]); } It'll print 1,2,3,4,5,1,2,3,4,5,1,2,3,4,5, instead of 1,1,1,2,2,2....
@marflage
@marflage 3 жыл бұрын
Thanks for informing!
@shakilmakram6923
@shakilmakram6923 3 жыл бұрын
thanks for the tips
@yearsystem882
@yearsystem882 4 жыл бұрын
thanks for the video brother :)
@johncerpa3782
@johncerpa3782 4 жыл бұрын
Great tips
@techhublearn1
@techhublearn1 3 жыл бұрын
Hi Andrea sir can you suggest some interesting college project using flutter.
@whilelive
@whilelive 4 жыл бұрын
Amazing
@MikeNugget
@MikeNugget 4 жыл бұрын
Nice video! What shortcut do you use in VS Code to quick import files from the same directory?
@carlosfvp
@carlosfvp 2 жыл бұрын
I guess he is just pressing the Undo shortcut to show the code he is explaining.
@guilhermeaguiar2743
@guilhermeaguiar2743 4 жыл бұрын
Sou do brasil nao sei falar ingles, mas meu parabens. Deu para entender algumas coisas
@_chappie_
@_chappie_ 3 жыл бұрын
I knew about some of these and I felt less newbie lop
@ahmedadnan5875
@ahmedadnan5875 4 жыл бұрын
awesome
@riteshkumartiwari153
@riteshkumartiwari153 Жыл бұрын
great
@void4904
@void4904 4 жыл бұрын
Like first 💓
@hemanth6951
@hemanth6951 4 жыл бұрын
1:50 same thing in python __call__ method,👍
@mehmetedex
@mehmetedex 4 жыл бұрын
cool
@theradinion6317
@theradinion6317 4 жыл бұрын
thought this was about the sport
@floriansenf6586
@floriansenf6586 3 жыл бұрын
Haha
@pradeepkumarreddykondreddy7048
@pradeepkumarreddykondreddy7048 2 жыл бұрын
It was too fast. I could not understand few of them.
@getsellwebshop7482
@getsellwebshop7482 2 жыл бұрын
plz build a little vpn plz
@malaniniks
@malaniniks 3 жыл бұрын
.
@antonyaz3506
@antonyaz3506 Жыл бұрын
One year of my experience in 12 minutes
Top 35 Flutter Widgets
29:29
Flutter Mapp
Рет қаралды 334 М.
黑天使只对C罗有感觉#short #angel #clown
00:39
Super Beauty team
Рет қаралды 36 МЛН
小丑女COCO的审判。#天使 #小丑 #超人不会飞
00:53
超人不会飞
Рет қаралды 16 МЛН
This Is Why Python Data Classes Are Awesome
22:19
ArjanCodes
Рет қаралды 821 М.
Dependency Injection, The Best Pattern
13:16
CodeAesthetic
Рет қаралды 905 М.
35 Flutter Tips That Will Change Your Life
10:53
Flutter Mapp
Рет қаралды 313 М.
I built 10 web apps... with 10 different languages
14:23
Fireship
Рет қаралды 1,7 МЛН
10x Your Speed With Flutter
8:04
Flutter Mapp
Рет қаралды 80 М.
Learn Flutter Hooks and Maximize Your Code Reuse
10:36
Robert Brunhage
Рет қаралды 62 М.
7. Best Practices for your Flutter Project
14:35
Flutter Explained
Рет қаралды 30 М.
Top 70 Flutter Tips, Widgets & Packages
16:22
Flutter Mapp
Рет қаралды 131 М.
黑天使只对C罗有感觉#short #angel #clown
00:39
Super Beauty team
Рет қаралды 36 МЛН