3 Tips to hack your Flutter productivity right away!

Tomic Riedel
3 min readApr 9, 2024

Today I’m going to introduce you to 3 tips that will take your Flutter development to the next level!

If you like this content, then I would appreciate if you slap the clap button ;)

Let’s get started right away!

Fix all errors

Who doesn’t hate to see this indicator in VSCode?

Often, imports are not needed, there are missing const keywords, or other little problems. But, isn’t there some way to fix these errors in a matter of seconds in the whole project? Yes, there is, and it’s much easier than you think. Just navigate to your project in the terminal and type dart fix --apply. And everything is fixed ;)

Better Error Screen

Everybody, really everybody hates this error screen:

But what if I told you that you can make this screen so much better with a few lines of code? Well, I’m going to show you how to do that:

  1. in your main function, add the following:
void main() {
ErrorWidget.builder = (FlutterErrorDetails details) {
return const…

--

--

Tomic Riedel

Sharing the process of building a portfolio of apps to make people more productive.