Connect with us

Articles

Top 10 Flutter Tips I Learned After 2+ Million Users

This article will be about the technical tips on developing a flutter app that will be more robust, and easier to maintain by a team.

One of Architecture that I use

Install lint tools as soon as possible, because it will more and more costly if you postpone the installation. Installing lint tools for a fresh project is going to be way easier than installing them in the middle of a complex project because you need to also change the legacy code to follow the lint rules.

If you have already implemented any state management, my advice is to not use setState method in any of your code because it means that you need to add business logic in your UI code, except if you can not achieve it otherwise (I rarely encounter such a problem).

Advertisement

Trending