Thanks a lot. I’m a fan of your channel, so it’s great to hear this.
@skarrin62074 жыл бұрын
Oh hi paras
@ethan-youtubetips43254 жыл бұрын
You got me watching the whole video. Thumbs up 👍
@rayanfernandes26314 жыл бұрын
Woah man that was pretty good and consise demonstration of dart ... I learnt a lot of good stuff today!
@DenzilFerreira4 жыл бұрын
This is a masterpiece!
@workflop41174 жыл бұрын
Thanks for sharing Andrea
@delikinVlogs3 жыл бұрын
GOLD!!! THIS IS GOLD!!!
@vibinu75894 жыл бұрын
Best flutter channel in KZbin!🤩
@joranmulderij3 жыл бұрын
This is amazing! They are all very useful. 6 of them where at least partially new to me.
@sureshchakma11453 жыл бұрын
I bought your dart course from Udemy... and i am practicing... thanks you
@mrunfunny4 жыл бұрын
Great Video. Keep it up Andrea.
@jjsebastianfuertes4 жыл бұрын
Great content! 💯
@Pedro5antos_2 жыл бұрын
Thanks for sharing!
@MisterNorthernCanuck3 жыл бұрын
Absolute gold.
@denzell50704 жыл бұрын
Thank you. I'm definitely purchasing the course.
@yogenp4 жыл бұрын
Love this. Awesome content.
@alexey51744 жыл бұрын
Useful, thanks!
@mao_7163 жыл бұрын
Awesome!
@nicolasdupere4 жыл бұрын
So, so good! Thanks!
@yankodiev3 жыл бұрын
Excellent! 👍
@ianpaul92623 жыл бұрын
Very informative video!
@Fanaro4 жыл бұрын
The chaptering really helps. 👍
@raul2861624 жыл бұрын
This information is gold ❣️
@ahteramkhattak22433 жыл бұрын
nice ... very informative
@bm8308104 жыл бұрын
great tips, many thanks
@abdelouahedmedjoudja21634 жыл бұрын
Great video thanks
@devsbuddy2 жыл бұрын
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.thorcoder1504 жыл бұрын
Professional 🔥
@fahadkhatri43184 жыл бұрын
Excellent 👍 👍 👍
@3mro_coding3 жыл бұрын
Did you show ur localhost as https how? Adding self signed ssl? To the vhost?
@rizalhadiyansah4 жыл бұрын
Coooool!!!! Thanks!!!'❤
@cromuelbarut98596 ай бұрын
I learned a lot
@LinJheYi4 жыл бұрын
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....
@marflage3 жыл бұрын
Thanks for informing!
@shakilmakram69233 жыл бұрын
thanks for the tips
@yearsystem8824 жыл бұрын
thanks for the video brother :)
@johncerpa37824 жыл бұрын
Great tips
@techhublearn13 жыл бұрын
Hi Andrea sir can you suggest some interesting college project using flutter.
@whilelive4 жыл бұрын
Amazing
@MikeNugget4 жыл бұрын
Nice video! What shortcut do you use in VS Code to quick import files from the same directory?
@carlosfvp2 жыл бұрын
I guess he is just pressing the Undo shortcut to show the code he is explaining.
@guilhermeaguiar27434 жыл бұрын
Sou do brasil nao sei falar ingles, mas meu parabens. Deu para entender algumas coisas
@_chappie_3 жыл бұрын
I knew about some of these and I felt less newbie lop
@ahmedadnan58754 жыл бұрын
awesome
@riteshkumartiwari153 Жыл бұрын
great
@void49044 жыл бұрын
Like first 💓
@hemanth69514 жыл бұрын
1:50 same thing in python __call__ method,👍
@mehmetedex4 жыл бұрын
cool
@theradinion63174 жыл бұрын
thought this was about the sport
@floriansenf65863 жыл бұрын
Haha
@pradeepkumarreddykondreddy70482 жыл бұрын
It was too fast. I could not understand few of them.