Just wonderful; as most if not all Traversy courses are. A one hour course; take two hours to code, read the official documentation and understand some of the background, and you have a decent grasp of the technology before deciding to dive deeper into it. Perfect!
For anyone who does not see the debugger Dart and Flutter option in VS Code, go to Run > Add Configuration > Select Dart and Flutter, then the option should appear, or check in the Run and debug tab on the left. Worked for me
Brad is superhuman , can read viewers mind , what they want and when they want. great work as always. you are the inspiration of many people all over the world. i owe you for so many things which i have learn watching your video.
You were building for iPhone while I was following along doing exactly what you did and ended up building for android that is so much convenient and useful
Protip for better VSCode formatting: put a comma after each closing bracket in a widget attribute and it will format everything in a much more readable layout.
It's almost like everyone who posts these kinds of comments on every video is just in a constant state of being ready to learn anything and everything lmao. Nothing wrong with that, though. It's all relevant and useful stuff.
superb..... followed the entire course and although is two years old, everything works (just one minor change). Never got hands in flutter before it. Very well paced and structured. thanks a lot.
Switched over to this video, while I was watching Flutter Interact 2019!! Love your Crash Courses, Brad, they are really good at knowing all the basics and are roadmaps for learning complex things in the future!! 🖖
When i got this notification, i taught that we where already in 2020 lol. Thanks to Brad. Please don't forget to make a video on how to fight against laziness as a web developer 😅
I had to pause, I couldn’t keep watching because I don’t want to skip this time, I must say “Thank you Brad❤” before I finish the video and jump right on to my VS Code.
This is the BEST Flutter intro! Wow, thank you so much. I have tried over 10 Flutter tutorials over the past month, and this is the first one I was able to finish and get working! I would love to know how to do CRUD operations on the Saved WordPairs and sync them with a database!
Wow Brad am So excited seeing you working with flutter please do more of the videos I really love your content even though am not a web developer. ♥️♥️♥️
Thanks for a great overview of the Flutter development process. A nice logical progression and succinct explanations. As a complete newbie it definitely helped me get a "feel" for how the framework components fit together and also a first look at Dart code.
Great tutorial as always, Brad. We (at least, I) use 'final' in dart as a const, but when we don't want to assign a value right now. For example, we create the variable when the app starts, but later we assign a value, and we don't want that value to change.
Keep in mind though, I teach. When I was a regular developer I had a set of technologies I specialized in. I learned other stuff to keep me on my toes, but nobody needs to learn everything I put on my channel. I am by no means a master at everything that you see me do in a crash course. Creating a crash course and actually building a production app in Flutter (or anything) are very different things. I am still learning, I just teach what I learn
@@TraversyMedia And thats what we love. Teaching others what you learnt is what a great teacher does. 🙏💖 Love from India... learnt react and many other things from you 😊
If I can't understand a concept, I search your videos to get the bigger picture. You're a master of a lot of technologies! You're my saviour, thanks a lot.
Thank you for an amazing course. Really well worked through at the right pace with the right amount of content. This is my first foray into mobile apps for a long while, and it's the best yet. Thank you.
I love the tutorial, and followed along at home. I then went to the Flutter docs and saw that this project is the same as their Write Your First Flutter app walkthrough. Doesn't take away anything from your video, I just thought it was weird. Idk which one came first. Anywhooo, thanks again for the video!
For everyone struggling with the VSCode formatting: search the settings for formatter - "null" will be chosen which is the problem Choose dart-code.flutter and the auto formatting will work perfectly
I have been anticipating this. Thank God. I'm perfecting my mobile app dev with this. Lots of love from Lagos, Nigeria. Merry Xmas and a Happy New Year in advance. Thank You
Not sure if this is mentioned later in the video, but, the reason that VS Code is formatting it strange is that you have to use trailing commas. This is in the dart documentation. Hope it helps somebody :)
Instead of this write this command flutter build apk --target-platform=android-arm64 (64 bit ) flutter build apk --target-platform=android-arm (32 bit)
we all need a complete course on flutter please brad. I learned html, css, js from your udemy courses, now when compared with my friends in web development i am 10 times better than them because of your courses. Now i want to learn app development so i need your help
Your course has convinced me I need a real course, not watching someone already knowledgable do their thing for an hour! I don't really see the point in watching you do all these things without enough explanation of why they are that way. I couldn't reach the same conclusions myself. You lost me round about 32:00. Anyway, thanks for the tutorial, even if it just convinced me that I need more tutorials...
@DevDusty Player Nah its not being stupid. As someone that has experience with C#, Java and React and looking to play around with flutter this crash course is great but for a newbie programmer that can barely write loops let alone higher order functions this is a terrible tutorial.
with the way dart handles datatypes I can foresee that at the very least, the flutter/dart combo will become one of the go to option for native corporate dashboards and reporting. Seriously, lets go over some stuff: already supports cross platform (cheap), plans to extend to web & desktop (cheaper), dart is such an easy lang that it could be picked up by data engineers providing an affordable alternative to BI tools for small scale projects (even cheaper), although weak, libraries for charting are much more solid than some of reacts popular ones and are maintained and updated regularly. Basically, you either hire a Web dev, Android dev, an iOS dev and someone setting up microservices, or.... you could hire a full stack data guy and tackle everything in a single go... nuts
Very good and informative video. Your Web Development 2020 video genuinely inspired me to get back to learning web development. I was blown away with how many new technologies became popular over the course of 2 years. Just want to say that you're amazing. Keep up the good work! P.S - watched this as a way to relax and learn something!
Great video! We followed the instructions on a new Mac with no prior installs. We installed Xcode beta, Flutter, and Android Studio but ran into the following issues which you may need to resolve. You will also need to install Visual Studio Code (VSCode). Don't forget to follow the instructions on the Install page here to be able to launch it from the command line: code.visualstudio.com/docs/setup/mac 1. Editing the path in your .bash_profile Catalina on Mac now uses Z Shell and not Bash! So instead of editing .bash_profile, create a text file called .zshrc in same directory (if it does not already exist) and add the path to this file instead. 2: Installing Cocoapods failed Running: sudo gem install cocoapods failed. So, instead, we installed Brew (Home Brew) from brew.sh/ Then once Brew is installed, from Terminal run: brew install cocoapods 3. If using Xcode-beta then you will need to change the name from 'Xcode' to 'Xcode-beta' in the path when you run this command: sudo xcode-select --switch /Applications/Xcode-beta.app/Contents/Developer 4: Flutter and Dart Plugins are not found after installation in Android Studio. Run this command to fix: ln -s ~/Library/Application\ Support/Google/AndroidStudio4.1/plugins ~/Library/Application\ Support/AndroidStudio4.1 5. If looking for the english_words package on pub.dev, I couldn't find it using the pub.dev search but Google it and you will find it on pub.dev! pub.dev/packages/english_words 6. When adding the line: english_words: ^3.1.5 to the pubspec.yaml doc, VSCode will put it under flutter: and lined up with sdk: flutter, therefore ensure you delete the white spaces preceding it so it is clearly a new line!
Finally Brad! I'm super pumped. I've been waiting for this and will be looking forward to a Udemy course. I completed your Udemy bootstrap and Javascript course by the way. Best course ever! Thanks for all your hard work
Just wonderful; as most if not all Traversy courses are. A one hour course; take two hours to code, read the official documentation and understand some of the background, and you have a decent grasp of the technology before deciding to dive deeper into it. Perfect!
For anyone who does not see the debugger Dart and Flutter option in VS Code, go to Run > Add Configuration > Select Dart and Flutter, then the option should appear, or check in the Run and debug tab on the left. Worked for me
The way I search for tutorials on youtube: Traversy Media
Flutter Traversy literally in my search history
Me2
same here :D
this is so damn true. sadly Brad won't be making more new tutorials anytime soon.
CRASH COURSE => I'm 101% sure Traversy Media will show up fist in my result. Really love this channel
Brad has got everyone covered in each and every tech aspect. Quality stuff as always.
Brad is superhuman , can read viewers mind , what they want and when they want. great work as always. you are the inspiration of many people all over the world. i owe you for so many things which i have learn watching your video.
I just searched on Google for this an hour ago! React vs Flutter. Perfect timing! Thanks Brad!
You were building for iPhone while I was following along doing exactly what you did and ended up building for android that is so much convenient and useful
Protip for better VSCode formatting: put a comma after each closing bracket in a widget attribute and it will format everything in a much more readable layout.
thanks :)
When I tell you I’ve been waiting for you to post this, you have no idea. Great timing, thanks! 👍
It's almost like everyone who posts these kinds of comments on every video is just in a constant state of being ready to learn anything and everything lmao. Nothing wrong with that, though. It's all relevant and useful stuff.
+1
welcome to the dart side, would love to see you get into flutter and do more tutorials on it
would looooove this!!
yes pls
Maybe even a Udemy course *coughs*
Such an underrated comment😂👍
wrr
Didn't expect to see this here! I'm glad you're getting into Flutter!
It's great thing to see you here ResoCoder. Always spreading positive vibes
Hi Matej nice to see you here
I see a lot of flutter content ;) right what I was looking for, you got my subscription
why u stop Android Studio tutorials? :(
@@elmir.ahadov Android Studio is an IDE..
Awesome. Awesome! AWESOME!!
Brad, please do a full mobile project Udemy course in 2020!!
first youtuber that i have seen to actually explain every part of the program
Am i the only one that comes on here just to support Brad with a like on every video, even though I'm not interested in learning certain languages?
superb..... followed the entire course and although is two years old, everything works (just one minor change). Never got hands in flutter before it. Very well paced and structured. thanks a lot.
you're a mind reader dude. just started native app dev and was hoping you'd have a tutorial on flutter.
Switched over to this video, while I was watching Flutter Interact 2019!! Love your Crash Courses, Brad, they are really good at knowing all the basics and are roadmaps for learning complex things in the future!! 🖖
The way you had explained it by comparing with the other javascript frameworks is insane. Loved it :)
you have no idea how long i've waited for you to do a flutter tutorial, many thanks!!
When i got this notification, i taught that we where already in 2020 lol. Thanks to Brad. Please don't forget to make a video on how to fight against laziness as a web developer 😅
Best Flutter Beginner Course
i saw so many Video Before but this i learnt from the most
I had to pause, I couldn’t keep watching because I don’t want to skip this time, I must say “Thank you Brad❤” before I finish the video and jump right on to my VS Code.
Brad thank you for all the work you put into these tutorials, they are truly a blessing on the Internet!
This is the BEST Flutter intro! Wow, thank you so much. I have tried over 10 Flutter tutorials over the past month, and this is the first one I was able to finish and get working! I would love to know how to do CRUD operations on the Saved WordPairs and sync them with a database!
Quality Stuff ! I’m starting in flutter and this video is super helpful.
I have created these packages:
1. super_easy_in_app_purchase
2. super_easy_permissions
These will make your life a lot easier
This is such a great tutorial for someone who's previously been a Xamarin developer, jumping into Flutter!
I was going to start flutter and boom you uploaded this video... Really helpful, thanks
Best quality content with no bs. Congratz we are going forward with humankind.
at 25:11 primaryColor won't have any effect. Use primarySwatch instead.
Excellent tutorial, concise packed with a ton of informations.
Hey Brad, I'd take this crash course as a Christmas gift.
Best Christmas gift ever....
Thanks Brad!
I took 4 hrs and completed the course. Thanks brad
Wow Brad am So excited seeing you working with flutter please do more of the videos I really love your content even though am not a web developer. ♥️♥️♥️
Oh, this seems like a perfect tool for my first real software project in ten years! Thanks for the intro! :)
46:30 "I don’t like how VS Code formats this"
Just use Commas everywhere at the end. The Flutter plugin will format it well.
Thanks, great tip. This awful formatting also drove me kinda crazy.
he uses big text font
I was against it at the start, but yes, put a comma after every parenthesis and you'll be fine.
I feel Android studio is better IDE than VS code for flutter app development.
Interviewer: "what technologies have you worked with?"
Brad: *yes*
I will walk myself out.
😂😂😂
LOL!!!
can anyone tell me where this meme came from ? xD
*yes*
Can anyone tell me why the first course of node js dev to deployment of Brad is no longer availible on udemy ?
I've been waiting for you to do a FLUTTER crash course. Thank you Brad
You went right to the point on concepts needed right out of the gate. Thanks for the post.
Thanks for a great overview of the Flutter development process. A nice logical progression and succinct explanations. As a complete newbie it definitely helped me get a "feel" for how the framework components fit together and also a first look at Dart code.
Nearly gave up on Flutter, but you sir did a great job. Thank you.
I can't believe you made a crash course on Flutter. I'm so excited!
Great tutorial as always, Brad.
We (at least, I) use 'final' in dart as a const, but when we don't want to assign a value right now.
For example, we create the variable when the app starts, but later we assign a value, and we don't want that value to change.
Others : you can't learn everything
Brad : lol 😅 . .
Keep in mind though, I teach. When I was a regular developer I had a set of technologies I specialized in. I learned other stuff to keep me on my toes, but nobody needs to learn everything I put on my channel. I am by no means a master at everything that you see me do in a crash course. Creating a crash course and actually building a production app in Flutter (or anything) are very different things. I am still learning, I just teach what I learn
@@TraversyMedia And thats what we love. Teaching others what you learnt is what a great teacher does. 🙏💖
Love from India... learnt react and many other things from you 😊
If I can't understand a concept, I search your videos to get the bigger picture.
You're a master of a lot of technologies!
You're my saviour, thanks a lot.
@@dharmang Hi Dharmang! Where are you based in India? Are you currently open for internship/job opportunities?
@@shivanigaddagimath6105 please can i work remotely with you?
Straight to the point. No shady shenanigans
You absolutely got me now!!! I have been waiting for this time...Thanks Brad!
Please do a full course for flutter on udemy I'll buy it! :)
here's the course www.traversymedia.com
I was just thinking of react native or flutter, and boom, Brad uploads a flutter crash course
Thank you for an amazing course. Really well worked through at the right pace with the right amount of content. This is my first foray into mobile apps for a long while, and it's the best yet. Thank you.
Excellent video, Very easily taught how to create a first flutter app, i love it the way you described. Would like to see more videos
I love the tutorial, and followed along at home. I then went to the Flutter docs and saw that this project is the same as their Write Your First Flutter app walkthrough. Doesn't take away anything from your video, I just thought it was weird. Idk which one came first. Anywhooo, thanks again for the video!
He does mention in the video that it's the same one.
Awesome to see you doing mobile frameworks! Hope to see react native in the future!
This is literally the first app which the flutter documentation teaches you to build , the exact app !!
I'm still waiting for Dart Crash Course :) Thanks Brad! Great content!
cool tip use stl + enter, and stf + enter to automatically put stateless and stateful codes.
I screamed so hard when I saw this finally Thanks Brad
i absolutely love flutter. Can't wait until Flutter Desktop is available too
For everyone struggling with the VSCode formatting: search the settings for formatter - "null" will be chosen which is the problem
Choose dart-code.flutter and the auto formatting will work perfectly
I am more than happy to learn Javascript with you. But it's good that you post videos regularly :)
I love u brad!! More more more project about flutter please. Brad is our hero
I have been anticipating this.
Thank God.
I'm perfecting my mobile app dev with this.
Lots of love from Lagos, Nigeria.
Merry Xmas and a Happy New Year in advance.
Thank You
Nice one bro. ur not alone on this. up 9ja.
A journey of a thousand miles begins with a single step ,my first Step :)
Well he sticks to the basics mostly, it would still require a little bit of hunting through documentation.
Dude I can fly..no need to walk
Once again my favourite tutor with my favourite framework
Thank you Sir.
Kindly make one video for Solr search engine with zookeeper
Not sure if this is mentioned later in the video, but, the reason that VS Code is formatting it strange is that you have to use trailing commas. This is in the dart documentation. Hope it helps somebody :)
For anyone who's wondering how to build for android -
Open a terminal on your project's folder and run - flutter build apk
Instead of this write this command
flutter build apk --target-platform=android-arm64 (64 bit )
flutter build apk --target-platform=android-arm (32 bit)
we all need a complete course on flutter please brad. I learned html, css, js from your udemy courses, now when compared with my friends in web development i am 10 times better than them because of your courses. Now i want to learn app development so i need your help
Hey! Self-learning is the best way to learn in coding! Are you a student currently? Would you be open to internship/job opportunities in the field?
Thanks Brad. This is one I'll be checking out for sure. I'm sure you'll do a great job as always. Cheers.
Your course has convinced me I need a real course, not watching someone already knowledgable do their thing for an hour! I don't really see the point in watching you do all these things without enough explanation of why they are that way. I couldn't reach the same conclusions myself. You lost me round about 32:00. Anyway, thanks for the tutorial, even if it just convinced me that I need more tutorials...
@DevDusty Player Nah its not being stupid. As someone that has experience with C#, Java and React and looking to play around with flutter this crash course is great but for a newbie programmer that can barely write loops let alone higher order functions this is a terrible tutorial.
Definitely going to dive into flutter starting with this crash course :-D
Would be even more helpful if there were time stamps!
I was waiting for this video from a long time
Thank you brad... keep the great jobs
Amazing job Brad, please make one Flutter course for Udemy with project as always.
Can I like this 20 times
Wow there’s a lot of nesting going on.
Man you are the best! thank you so much for this course. I hope you make a full stack app too using flutter & node/firebase.
with the way dart handles datatypes I can foresee that at the very least, the flutter/dart combo will become one of the go to option for native corporate dashboards and reporting. Seriously, lets go over some stuff: already supports cross platform (cheap), plans to extend to web & desktop (cheaper), dart is such an easy lang that it could be picked up by data engineers providing an affordable alternative to BI tools for small scale projects (even cheaper), although weak, libraries for charting are much more solid than some of reacts popular ones and are maintained and updated regularly. Basically, you either hire a Web dev, Android dev, an iOS dev and someone setting up microservices, or.... you could hire a full stack data guy and tackle everything in a single go... nuts
Thats great crash course Brad 😄😄. Looking forward for more flutter tutorials from you, specially Flutter Web.
24:21 I wish I could tell Brad from the past about the comma formatting 😂
Very good and informative video. Your Web Development 2020 video genuinely inspired me to get back to learning web development. I was blown away with how many new technologies became popular over the course of 2 years.
Just want to say that you're amazing. Keep up the good work!
P.S - watched this as a way to relax and learn something!
Finally!! been waiting for so long for this. :)
Mr Traversy I didn't know I was in you mind I worked looking for good flutter crush course thank you so Much
I was waiting for this video for really long , thanks Brad
short and useful liked your calm voice i did not sleep while learning. thanks
Heard you say "App bar" and was like "This guy's from Mass" pulled up your video page and right away see a Sox hat.
Thanks, dude. Was a great tutorial to run through while sipping some beer on the 4th.
Thank You So Much Traversy Media. I wanna learn this course
i like the way you explain the code , this is awesome , hope to see more of flutter contents
Head to the net ninja after this appetizer 😋
Linode is damn sweet and clean. No stress, it just WORKS 😊😊
Who better to learn Flutter from than this sensei
Finally brad into some mobile development
That is course 😊 I was looking from your end 👍
Thank you very much!
im a simple man i see brad i press like
Great Brad has done it again. I have been waiting for this. Thanks a lot.
Tip: Adding a comma after each Widget will force VsCode to properly format it.
Incase you are wondering how his brackets are so well colored, the VS Code extension is called _Bracket Pair Colorizer._
Great video! We followed the instructions on a new Mac with no prior installs.
We installed Xcode beta, Flutter, and Android Studio but ran into the following issues which you may need to resolve.
You will also need to install Visual Studio Code (VSCode). Don't forget to follow the instructions on the Install page here to be able to launch it from the command line: code.visualstudio.com/docs/setup/mac
1. Editing the path in your .bash_profile
Catalina on Mac now uses Z Shell and not Bash!
So instead of editing .bash_profile, create a text file called .zshrc in same directory (if it does not already exist) and add the path to this file instead.
2: Installing Cocoapods failed
Running: sudo gem install cocoapods failed. So, instead, we installed Brew (Home Brew) from brew.sh/
Then once Brew is installed, from Terminal run:
brew install cocoapods
3. If using Xcode-beta then you will need to change the name from 'Xcode' to 'Xcode-beta' in the path when you run this command:
sudo xcode-select --switch /Applications/Xcode-beta.app/Contents/Developer
4: Flutter and Dart Plugins are not found after installation in Android Studio. Run this command to fix:
ln -s ~/Library/Application\ Support/Google/AndroidStudio4.1/plugins ~/Library/Application\ Support/AndroidStudio4.1
5. If looking for the english_words package on pub.dev, I couldn't find it using the pub.dev search but Google it and you will find it on pub.dev!
pub.dev/packages/english_words
6. When adding the line:
english_words: ^3.1.5
to the pubspec.yaml doc, VSCode will put it under flutter: and lined up with sdk: flutter, therefore ensure you delete the white spaces preceding it so it is clearly a new line!
Finally Brad! I'm super pumped. I've been waiting for this and will be looking forward to a Udemy course. I completed your Udemy bootstrap and Javascript course by the way. Best course ever! Thanks for all your hard work
On Uuuza,,
,,,,,,, be
On Uuuza,,z.
I have been waiting so looong for this 😍 thank you 🙏
gr8 vid brad please we need more and more dart/flutter videos and crash courses.
pleaseee we need your help and tnx a lott
Thanks Brad. Been waiting for this for a while.
Thanks Brad! I was just about to dive into Flutter. :)
Flutter and dart in my 2020 knowledge list
Did u learned it?
Nope was occupied with react