Although I have completed ..advanced courses related dart, flutter...i will still watch this one video to ensure not to miss any details :D because I enjoy your courses..its fun to learn and relearn
Quick nitpick for 8:21, in Rust variables are immutable by default and "const" is used for (global) values that can only be computed at compile-time and don't have one memory address associated with them, pretty much like "constexpr" in C++
28:26 😮 I can't believe what I just heard. You can reassign final variable with the value of const variable but not the other way around. It's understandable, due to the fact that both types hold constant values, although final allows internal mutation.
Even if I have done some micro projects in Flutter/Dart, because of the lack of constancy I have to study all over again. Really, those videos are very good, the way you explain is very clear and I understand what I'm doing. I've decided to keep a constancy, although small, of at least one hour a day to be able to improve/gain skills with Flutter and I've decided to upload it to my repository. Honestly, if there's a place to start, it's this course. Thank you very much!!!
thanks for the help , I've been coding for almost half a year now but i just knew some stuff that i never heard of during this 1h video , thank u again
20:26 const v/s final: You can't reassign const variable or change the internal value of a const variable. For a final variable, you can change its internal value, but you can't reassign to it a new value after it's already been assigned.
I developed a deep love for your style of teaching. Even though I've learned enough to get my feet dirty with Dart, I'm reviewing Dart through your videos.🎉🎉🎉
Hi, I'm windows 11 user, I download and charge the WSL ubuntu virtual machine and I opened the wsl console, when I trynna do this command fswatch -o bin/ | xargs -n1 -I{} sh -c 'clear; dart bin/example.dart' it didn't work and appear a message that says " xargs: warning: options --max-args and --replace/-I/-i are mutually exclusive, ignoring previous --max-args value" Please help me this problem
Hi @Vandad Nahavandipoor , I am really bored with UA-cam ads which are shown every 2 or 3 minutes while watching your videos. Do you have a solution for this?
Hi. I don’t know how YT algorithms work but I believe they decide how often ads are displayed based on certain criteria because I cannot steer that unfortunately 🥲
Although I have completed ..advanced courses related dart, flutter...i will still watch this one video to ensure not to miss any details :D because I enjoy your courses..its fun to learn and relearn
Quick nitpick for 8:21, in Rust variables are immutable by default and "const" is used for (global) values that can only be computed at compile-time and don't have one memory address associated with them, pretty much like "constexpr" in C++
28:26 😮 I can't believe what I just heard. You can reassign final variable with the value of const variable but not the other way around.
It's understandable, due to the fact that both types hold constant values, although final allows internal mutation.
28:36 even though you did not write anything, it recommends const [ name = 'foo';]. could you tell me which extension do you use for it? thank you!
That is GitHub Copilot
@@VandadNP thank you!!
Really good class. Thank you.
I knew everything already but it was a good recap. You are a great teacher!
I’m glad to hear that. Thank you 😊
Even if I have done some micro projects in Flutter/Dart, because of the lack of constancy I have to study all over again.
Really, those videos are very good, the way you explain is very clear and I understand what I'm doing.
I've decided to keep a constancy, although small, of at least one hour a day to be able to improve/gain skills with Flutter and I've decided to upload it to my repository.
Honestly, if there's a place to start, it's this course.
Thank you very much!!!
Thank You Vandad! You are amazing man!
I appreciate that, thank you 🤗
woow .... i love how you teach. May God really bless you.
I appreciate that, thank you 😊
I really enjoyed this particular course. You're awesome thank you. Moving on
You are so welcome
impressed truly exeptional...very good
hi is fswatch available for windows or do you know any substitute for it for windows?
thanks for the help , I've been coding for almost half a year now but i just knew some stuff that i never heard of during this 1h video , thank u again
how do you make the code sugguestions showing at end of line? what vscode extentions is using?
Error Lens 😊
@@VandadNP thanks
What is the alternative to fswatch on windows?
If you're using VS Code you can use the Code Runner extension to output your code.
nodemon
20:26 const v/s final:
You can't reassign const variable or change the internal value of a const variable.
For a final variable, you can change its internal value, but you can't reassign to it a new value after it's already been assigned.
Are you using an extension to show inline warnings in the editor?
I developed a deep love for your style of teaching.
Even though I've learned enough to get my feet dirty with Dart, I'm reviewing Dart through your videos.🎉🎉🎉
Thank you very much!
Really appreciate the effort that you put into these courses! Thanks!!
Glad you like them! 😊
we are in the same opinion of it will be good to name src instead of bin
I finally found my teacher to learn dart. I really thank you. good explained 👍👍
I left the specify type in linter and dart complained about missing type annotation for List
Please do a video making extension in dart.
I watch all ur courses on flutter and was amazed on how u use extension to make your task easier.
Awesome, thanks!
You're most welcome 😊
Sir this wonderful course will be of how many hours ?
Hi, I'm windows 11 user, I download and charge the WSL ubuntu virtual machine and I opened the wsl console, when I trynna do this command fswatch -o bin/ | xargs -n1 -I{} sh -c 'clear; dart bin/example.dart' it didn't work and appear a message that says " xargs: warning: options --max-args and --replace/-I/-i are mutually exclusive, ignoring previous --max-args value"
Please help me this problem
Did you find a fix? I installed with cygwin and get the same xargs warning.
@@ralphstube any fix ?
@@elieyass3799 hi, remove the -I{} which is just for macs.
Hi @Vandad Nahavandipoor , I am really bored with UA-cam ads which are shown every 2 or 3 minutes while watching your videos. Do you have a solution for this?
Hi. I don’t know how YT algorithms work but I believe they decide how often ads are displayed based on certain criteria because I cannot steer that unfortunately 🥲
amazing
Glad you liked it 😊
Awesome tutor
Sir would Make video on how to code game engine?
YESS THIS IS WHAT I WANT
great
command used in video:
fswatch -o bin/ | xargs -n1 -I{} sh -c 'clear'; dart bin/example.dart'