Top 10 Flutter Packages That Speed up Your App Development

Flutter Knowledge Sharing #70

Geno Tech
8 min readNov 3, 2022
Image: Flutter packages

This is another knowledge-sharing step of our flutter journey. Flutter is super excited because it is renewed daily with new features. New Packages come to the party daily and ease all tasks with flutter development. For that, we should be aware of new packages. Here I am introducing ten packages I used and heard about on social platforms. Some of them may be new, or some of them are not new but useful. When you work with Flutter, you will find several flutter packages that can be used to develop tasks easier. Let’s go each.

FlutterGen

Do you also want to increase your speed when developing Flutter applications? Then flutter_gen is absolutely a package that you should have looked at if you didn’t know it already. It’s a code generator for your assets, colours, and everything you want to include in your apps. Adding a new asset to your application will correct the path to that asset and give access without any typos. Look at the following example.

# pubspec.yaml
flutter:
assets:
- assets/images/profile.jpg
// This is how we normally use an asset. If there have any typos, this gives you an error.
Image.asset('assets/images/profile.jpeg');
// By using this…

--

--

Geno Tech

Software Development | Data Science | AI — We write rich & meaningful content on development, technology, digital transformation & life lessons.