Regarding tip#9, you can also use log('message') by importing 'dart:developer'. So in debug console the log messages are printed as [log] message with orange colour which separates them from other logs.
Be aware that, only supported editors parses those messages. I am quite sure at least that the logs in terminal doesn't show these (I could be wrong though)
Tip 11, stay on top of your package updates!!! I just did my firebase, which I hadn't touched since before the big change. Ugh, but lesson learned. Thanks, great tips!
The example you've given in 7:42 to apply a certain style to multiple widgets, that can even be more simplified by wrapping the Column with Theme widget.
Actually adding a lot of packages is a recipe for a big mess :) It's ok at the beginning - when prototyping. In production code I'd think twice before inviting any outer dependency to my app. And I'd keep them wrapped by my own code - leaving myself the option of replacing them or implementing in a different way in future.
Yes I agree, it's suboptimal relying on a bunch of packages BUT it's not even worth it if the projects takes too much time or it doesn't have the right functionality the user actually want. I would never argue though that you should architecture the code in such a way that you can replace different parts / packages with ease.
This is fantastic content. In some cases #1 is great advice, you just need to be meticulous. I've learned that you have to use packages in a way where you can comfortably remove the dependency in the future if needed.
I think it would be useful for us beginners to see a video on how to use packages in a way where you can comfortably remove the dependency in the future. Is there such a video?
@@DanVanDamme Will write it down, have to figure out a good way to do it, as this is not specific to packages but more coding in general to keep your dependencies separate 😊
I guess im randomly asking but does any of you know a trick to log back into an Instagram account..? I was stupid lost my login password. I would appreciate any tricks you can give me
My problem with number 1 is that often the effort to learn a package exceeds what it would take to just write what I need. Some packages do so much that it is easier to just roll your own using widgets. Like making a histogram. It takes like 20 minutes with containers and rows. Vs however long it takes to learn to use one of the major libraries
Thanks, super appreciated! I make them in Figma! I look at other thumbnails for inspiration, and then just remake the thumbnail a couple of times applying some design fundamentals and done, MAGICAL
This has three main benefits... 1. You give proper names to parts of that public facing widget 2. Reduce nesting tremendously 3. You make that private widget only be used with the public facing one. It's almost the same as instead of one mega method you would have multiple small methods you call which are private 😊
@@RobertBrunhage I am mobile app developer n i have knowledge of native as well flutter...but now i am thiking to give 100% study to flutter.....if i am going to be only flutter developer then i will get jobs or there i need to wait more time for flutter to get mature
In india currently you have more react native jobs compared to flutter. In coming years it might change as flutter is growing big. Zerodha and dream 11 are two big companies that use flutter in india.
Hello! I recently updated VSCode and I am having as on 3:41 ,where autocomplete produces double set of parentheses and parameters. Does anyone know how to solve this issue?
Regarding tip#9, you can also use log('message') by importing 'dart:developer'. So in debug console the log messages are printed as [log] message with orange colour which separates them from other logs.
Be aware that, only supported editors parses those messages. I am quite sure at least that the logs in terminal doesn't show these (I could be wrong though)
Tip 11, stay on top of your package updates!!! I just did my firebase, which I hadn't touched since before the big change. Ugh, but lesson learned. Thanks, great tips!
The example you've given in 7:42 to apply a certain style to multiple widgets, that can even be more simplified by wrapping the Column with Theme widget.
Actually adding a lot of packages is a recipe for a big mess :)
It's ok at the beginning - when prototyping. In production code I'd think twice before inviting any outer dependency to my app. And I'd keep them wrapped by my own code - leaving myself the option of replacing them or implementing in a different way in future.
Yes I agree, it's suboptimal relying on a bunch of packages BUT it's not even worth it if the projects takes too much time or it doesn't have the right functionality the user actually want.
I would never argue though that you should architecture the code in such a way that you can replace different parts / packages with ease.
This is fantastic content. In some cases #1 is great advice, you just need to be meticulous. I've learned that you have to use packages in a way where you can comfortably remove the dependency in the future if needed.
Exactly! Should have been more clear in the video about that but I agree fully!
I think it would be useful for us beginners to see a video on how to use packages in a way where you can comfortably remove the dependency in the future. Is there such a video?
@@DanVanDamme Will write it down, have to figure out a good way to do it, as this is not specific to packages but more coding in general to keep your dependencies separate 😊
Thank you very much
Awesome video Robert
Great tips, thanks! 👌
Bro' your channel is GOLD CONTENT
Keep it up 🥇👌
2:35 add the lint to the dev_dependencies, not dependencies ❗
Thanks Robert really great and well done video :D
Those tips were just remarkable mate 😃
Thanks!
I can’t wait to use the productivity tips in my life! 💫 Keep rising to be who you want to be! 💫 #keeprising #risingtobe #aswerise #riser
I guess im randomly asking but does any of you know a trick to log back into an Instagram account..?
I was stupid lost my login password. I would appreciate any tricks you can give me
This is really a underrated channel because its TOO useful for flutter developers like me....keep up the good work 👍👍
Thanks Mukal, appreciate it a ton!
love you videos! can you make more riverpod tutorials please!
Have plans for it!
@@RobertBrunhage omg! cant wait! thank you Robert! your the best
Thanks!! How to enable Extract Widget tooling in Android Studio?
I think it should be on by default, try doing alt+enter and see if you get up the tooling window!
use flutter outline
On tip number 5 , how you can refactor like that ? What shortcut ?
What VSCode theme are you using? Great video, I loved it!!
One Dark Pro!
When will null safety be released?
My problem with number 1 is that often the effort to learn a package exceeds what it would take to just write what I need.
Some packages do so much that it is easier to just roll your own using widgets. Like making a histogram. It takes like 20 minutes with containers and rows. Vs however long it takes to learn to use one of the major libraries
Ur tutorial r really great and i'm learning a lot from u , question outside of flutter 😅 how do u make these great thumbnails
Thanks, super appreciated!
I make them in Figma!
I look at other thumbnails for inspiration, and then just remake the thumbnail a couple of times applying some design fundamentals and done, MAGICAL
@@RobertBrunhage thx a lot ❤️
I didn't get the point of making Widget classes private. What's the point of doing this?
This has three main benefits...
1. You give proper names to parts of that public facing widget
2. Reduce nesting tremendously
3. You make that private widget only be used with the public facing one.
It's almost the same as instead of one mega method you would have multiple small methods you call which are private 😊
Limit it's use to the current file = cannot accidentally call it from another file/scope.
what will be future of flutter can we trust its going to be there in market or in future we are going to have jobs???
The market is growing at a very quick speed but if that is your goal to have a job ASAP, I would go with what your area is looking for
@@RobertBrunhage I am mobile app developer n i have knowledge of native as well flutter...but now i am thiking to give 100% study to flutter.....if i am going to be only flutter developer then i will get jobs or there i need to wait more time for flutter to get mature
In india currently you have more react native jobs compared to flutter. In coming years it might change as flutter is growing big. Zerodha and dream 11 are two big companies that use flutter in india.
Hello!
I recently updated VSCode and I am having as on 3:41 ,where autocomplete produces double set of parentheses and parameters. Does anyone know how to solve this issue?
I moved to Android Studio cuz of that bug...
Yay I'm the 4th comment. Thanks for the video!
Close enough right? Thanks Ardit!
Oh the style reminds me of Fireship.io; its really nice!
For Android Studio:
- Tip number 2 with snippets: Search for _Live Templates_ in *Settings*
using a lot of packages is not good bro by looking the app size and some how the app speed
I talked about the reason when I said it 😊
I literally procrastinate by watching videos and pretending it is self-help eeek!
Discord club assemble! :D
Wooo!
flutter native splash
Am I first?
Noo i wanted to be 🤣
Here have a cookie 🍪
Tip number 10 = Gucci.
Is I'm only who doesn't see a TIP Number 4 🙄🤔
Fixed!