We were unable to load Disqus. If you are a moderator please see our troubleshooting guide.
Hi Remi! I'm interested in more of this project, any idea if/when you'll continue it?
While I'm here, is there a good article anywhere on the /packages style of code layout? I went on a search and couldn't find much about it
Hello, yes – but after some work on Riverpod
Well done, Remi. Learned a lot.
Wondering how you commonly find yourself structure your monorepo? By type, domain, feature/route, etc...
Thanks for this Awesome Article Remi brother. First time I heard and learnt about linter and analyzer.
Very interesting, now I have another view on how to create my future Flutter projects.
Wonderful article. I still remember myself swearing at my computer while I was trying to understand some runtime errors caused by tricky implicit casts.
Looking forward to your next one
Hi,
Thanks for your code, it is always inspirational :)
On my way to learning and completing a bootstrap for Flutter apps, I've read this article https://medium.com/flutter-... about analysis_options that can be read along your own article.
I have also digged another config file that come with documentation, dartdoc_options.yaml, that is not really well documented. If you agree I can share it with you...
Attention to detail is equally important. Great tips, thanks!
EDIT:
I've tried using the snippet you used on the analysis_options file and something interesting happened:
analyzer:
strong-mode:
implicit-casts: false
implicit-dynamic: false
When using this configuration with Provider package, it gives us this error:
Provider.of<color>(context)The argument type 'Color' can't be assigned to the parameter type 'MaterialColor'.
Wow, this is a rare gem. Some next level stuff . Thanks for this Remi
Remi, this is an awesome article. Exactly the stuff that you don't find in this way in the official documentation.
Thank you so much for this, Remi!
One more thing i would like to add is using
flutter run --verbosefor whenever your build fails to get more info on the error