I'm just ridiculously impressed from your Tutorial series, there are a lot of different ones out there, but yours is just a whole nother level of perfection and simplicity , especially for someone who's main language is german and not english.
You are an amazingly talented tutorial creator, and implement key programming values in your teaching. Just the way you minimized and trimmed the excess template code and gave me a visual understanding of each line of code's purpose as well as imagining how the result would be *without* the code you showed us. The Scaffold vs no Scaffold was a fantastic example.
I would like to leave a note for future viewers : Calling MaterialApp in runApp directly prevents hot reload, to solve this create a custom App widget that returns MaterialApp in the build method
This is amazing... like I am absolutely stunned and if any of you guys are getting an error for the floating action button just put in onpressed = null, as a property
Just in case people are having issues with the floating action button, if it says you have to add an onPressed callback, just add it and set it to null
So despite having years of experience in lots of programming languages, I ask myself, how do you do THAT? you just add a line "onPressed: null," which is obvious AF in hindsight, but I hate having to pause the bleeping video while I figure stuff out no matter how trivial it turns out to be.
Nice! Another way to implement that would be to do this: floatingActionButton: FloatingActionButton.extended( onPressed: () {}, label: const Text('click'), backgroundColor: Colors.blue, ),
You are great!! I have almost gone through 4 5 video on flutter but didn't understood any thing. Just by removing functions you made it so simple to understand. I Really appreciate your work.
Hello from India Ninja....Thank you very much for creating this helpful and easy to understand and followable tutorial..... Tried all the other tutorials on youtube.....they confused me...only after following your series, I have ended up running an app on my device..The way you are describing code from ground zero is awesome...This is the way of teaching I was looking for..Highly appreciated.
Dude, you are lit, I don't know what it is but you are good at teaching (and take it from someone who has to fight himself to learn new things). Thank you.
I have 4 Flutter courses on Udemy and this is better than all of them. I cant believe you give this away. Even if you made an Udemy Flutter course I think people would start here.
@6:45 As a few people have said, Flutter now REQUIRES you to set an onPressed attribute for the FloatingActionButton, and you'll get an error if you don't. For the sake of this tutorial, you can just set this to null, so that the button won't do anything but will still show up. This would look like: floatingActionButton: FloatingActionButton( onPressed: null, child: Text('Click'), in your Android Studio editor. Happy programming!
As someone who has used xaml for years, hopefully someone will create a markup language for this. I can't imagine editing this once you have some crazy tree.
Hey there, This playlist is no doubt a good way to learn about flutter, but I don't know why the code in dart is different from what you are writing, is this because of any update? Please suggest me a way on how to get use to the changed code and learn dart. Thanks :)
Those who are having issues with the floatingActionButton, here is the code: floatingActionButton: FloatingActionButton( onPressed: () {}, child: Text('Click'), ),
There is just question, you said that when we want to nest inside a widget we always use a "child:" property, but why not used the "child:" property for the title in the AppBar or even a child for "appBar: " under the Scaffold. I understand this is how it must be built by the flutter developers but I, just want to get more insight on the logic. Instead of just following these extremely amazing tutorials of yours and copy the code.
Who else thinks that this tutorials are really good. Thanks so much.
Yes, they are!
I think , they are the best on RUclips.
Thank you!
Adeola wanna roll with a geezer
couldn't agree more, this series makes so much sense, and makes everything so easy to understand
I'm just ridiculously impressed from your Tutorial series, there are a lot of different ones out there, but yours is just a whole nother level of perfection and simplicity , especially for someone who's main language is german and not english.
I see, auch ein Deutscher der lernt :D Kann dir nur zustimmen, man lernt gut, vorallem wie er alles gestaltet gegenüber Anfänger in der Szene.
This is the best Flutter tutorial series I have come by in the last 12 months
I've watched every Flutter tuto on youtube, and this is great one so far, it's so simple, you're an amazing teacher!
Thanks so much :)
First programming video that actually made sense. What a great teacher.
That means a lot, thank you :) don't forget to check out our latest Flutter crash course for 2024 here: ruclips.net/video/j_rCDc_X-k8/видео.html
i simply love the way you teach. you make feel others this is soo simple, even a child could do it... you are great!
After surfing to 10s of tutorials, I finally found someone who's language I understand. Recommended to beginners
You are an amazingly talented tutorial creator, and implement key programming values in your teaching.
Just the way you minimized and trimmed the excess template code and gave me a visual understanding of each line of code's purpose as well as imagining how the result would be *without* the code you showed us. The Scaffold vs no Scaffold was a fantastic example.
Thanks so much :)
If you're getting an error with the floating action button, leave the onPressed function there with no arguements and no body i.e. onPressed: () {}
Thank You👍
Pin this comment, it works! Thank you for sharing .
@@Nirbhey In the very next Video its mentioned..
Thank you so much ^_^
or 'onPressed: null'
So far the best video series on flutter android development I guess ♥
I had given up trying to learn Flutter since it seemed very complex, but I'm giving it another chance since your tutorials are very good :)
I would like to leave a note for future viewers :
Calling MaterialApp in runApp directly prevents hot reload, to solve this create a custom App widget that returns MaterialApp in the build method
This is amazing... like I am absolutely stunned
and if any of you guys are getting an error for the floating action button just put in onpressed = null, as a property
Thanks!
I have a midterm project and I have been considering Flutter for it.. sir, you are a savior.... I enjoyed learning from this Video!
Just in case people are having issues with the floating action button, if it says you have to add an onPressed callback, just add it and set it to null
So despite having years of experience in lots of programming languages, I ask myself, how do you do THAT? you just add a line "onPressed: null," which is obvious AF in hindsight, but I hate having to pause the bleeping video while I figure stuff out no matter how trivial it turns out to be.
Nice! Another way to implement that would be to do this:
floatingActionButton: FloatingActionButton.extended(
onPressed: () {},
label: const Text('click'),
backgroundColor: Colors.blue,
),
@@bonkers_dave just do this
onPressed: () => null,
@@bonkers_dave floatingActionButton: FloatingActionButton(onPressed:() {},
child:Text('click'),
i'm so thankfull dude@@azima86
never skip the ad, thank you for sharing your knowledge
I am a xamarin forms developer & must say I am loving these flutter tutorials from Ninja
Man you are truly awesome! I found new love for flutter after watching your contents, so easy to grasp. Carry on.
Great please do a complete series I'm waiting from a long time who can teach clearly u r the only one who can convert complex topic to simple topic
Hey, glad you like :). I'll be uploading 2 vids nearly every day, so won't be too long before the whole series is up :)
@@NetNinja Can't wait
@@NetNinja
You are *_The Best !_*
seriously brother. I had tried Udemy and various youtube videos. Nothing made sense except yours. Just Amazing ✨
I'm starting to learn Flutter and the google documentation is a bit complexes to understand. But your Tutos make my life easier; thank you!
+1 sub
The explanation on nesting widgets using "child" property is really well-explained :)
TheNetNinja has programmed one of the users to write RUclips comments
best flutter tutorial ever, it's even better than tutorials in udemy
True .. Better than udemy girl
You are great!!
I have almost gone through 4 5 video on flutter but didn't understood any thing. Just by removing functions you made it so simple to understand.
I Really appreciate your work.
probably the best series on flutter and dart I've ever seen
Hello from India Ninja....Thank you very much for creating this helpful and easy to understand and followable tutorial..... Tried all the other tutorials on youtube.....they confused me...only after following your series, I have ended up running an app on my device..The way you are describing code from ground zero is awesome...This is the way of teaching I was looking for..Highly appreciated.
I didn't understood earlier what's a property what's a widget but you made it so clear.
The best teacher thanks you for clear explanation
Glad it was helpful!
This is the best tutorial in the universe for Flutter, Thanks Shaun.
Dude, you are lit, I don't know what it is but you are good at teaching (and take it from someone who has to fight himself to learn new things). Thank you.
An easier way to wrap Text() with Center() is to place the cursor on the Text(), Alt-enter and choose "Wrap with Center"
THESE TUTORIALS ARE GOLD!!! Keep it up man !!!
This is the best Flutter tutorial on RUclips. Your teaching style is so good. 👍
I’m truly grateful that I found your tutorials on RUclips. Thank you a lot! I really appreciate how you shared this tutorials :) Thank you again!
I have 4 Flutter courses on Udemy and this is better than all of them. I cant believe you give this away. Even if you made an Udemy Flutter course I think people would start here.
Thank you so much! God bless you! Love from India!!🧡
Wish I could subscribe twice... you make everything simple... Thanks Man.
woow the way flutter and dart work are something else 😲
Good day Sensei. My 8GB computer is struggling with Android Studio so I will have to try my best to follow while using VS Code. Great series as usual.
me using 2 gb ram crying inside ;
i have 8 gb too and it runs pretty well.
I Have Only Positive Things to Say About This Man. Very Good Tutorials I Quite Learned a Lot About Flutter
I remember I watched your node js tutorials and they were really good, now I'm so glad your explaining flutter too 👌🙌
wow wow wow this is the best flutter tutorial so far, better than the paid once.
For your time and love , I thank you for helpful tutorails
Best programming teacher ever who also think so
Wow exceptional flutter series😍
juzt loving it!!!
Thank you so much 😀
Great tutorials, Thank You So Much ❤
Best flutter tutorial series...hats off .,,,... tysm!
best programming teacher
Great tutorial, im german and i have to set the speed of the vid to 0,75 to understand what you are saying but i really get the meaning of your words.
Excellent tutorials!
Thanks for the help.
easy to follow for beginner, thanks Dude for making this vidio
What a magician for the novice!!!
You are a Star man , thank you for this
love the way you explain😇🤍
Thank you! 😃
I will give you thanks for all your support, you´re the best.
Much better than the other tutorial made by the ex-google guy
You are best teacher!
i watched full series thanks sir its very good
Excellent !!!!! Very good explanation.
@6:45 As a few people have said, Flutter now REQUIRES you to set an onPressed attribute for the FloatingActionButton, and you'll get an error if you don't. For the sake of this tutorial, you can just set this to null, so that the button won't do anything but will still show up. This would look like:
floatingActionButton: FloatingActionButton(
onPressed: null,
child: Text('Click'),
in your Android Studio editor. Happy programming!
Hats off to you brother for this awesome explanation
Thanks Sir for one of the best method ❤❤❤
Very clear explanations - thank you!
Wooooow .. u have such incredible way of teaching
Awesome,extrodinary,excellent,superp,wonderful,amazing
Best turorial for flutter. thank you.
Thank you! These videos are really helpful.
Thanks for this tutorial it is really detailed.
Great tutorial! Easy to understant.
Thank you for this amazing explanation
worked on my end, thanks!
As someone who has used xaml for years, hopefully someone will create a markup language for this. I can't imagine editing this once you have some crazy tree.
This tutorial is so awesome and so essy to grasp tysm sir😍
more please, all the way to deploying , cheers
Thanks Ninja. You're awesome.
fantastic my teacher say to me go to reacyt native but now i see this is very beter thanks ninja
Thanks net ninja, this has really helped me
Hey there,
This playlist is no doubt a good way to learn about flutter, but I don't know why the code in dart is different from what you are writing, is this because of any update?
Please suggest me a way on how to get use to the changed code and learn dart.
Thanks :)
Amazing tutorials!!!
your tutorial is better than udacity! w0w
Amazing tutorial
Really very helpful
Hi... loving these tutorials. One question: what option or plugin do I need to enable the vertical guide lines that group functions' bodies?
thank you for everything
awesome lecturer , thanks for help~
Thank You You Do The Great Job
Brilliant videos!!! Thanks!!!
Lemme download this .....before he changes his mind ....tutorial is super awesome
Hey Net Ninja, thanks for this awesome tutorials. How do you get the horizontal lines in your indentation guidelines.
Amazing!!!!! Thanks so much.
Man Tutorial Perfecto!!!!!!!!!!
Those who are having issues with the floatingActionButton, here is the code:
floatingActionButton: FloatingActionButton(
onPressed: () {},
child: Text('Click'),
),
thx bro
Thanks man. you're the best!
Great tutorials, keep up the good work ! :D
that was awesome thanks a lot
i love they way you saying "rather", sounds like kitten growl
So amazing, you're the best :)
There is just question, you said that when we want to nest inside a widget we always use a "child:" property, but why not used the "child:" property for the title in the AppBar or even a child for "appBar: " under the Scaffold. I understand this is how it must be built by the flutter developers but I, just want to get more insight on the logic. Instead of just following these extremely amazing tutorials of yours and copy the code.
Great series of Videos, Can Flutter work with GPS data, can it read Bluetooth and Send out MQTT protocol packets.
Hi,
It´s a good video.
Thanks.