flutter

Why Pub.dev’s Metrics Fall Short in Identifying Flutter Packages

It’s easy to assume that the most liked packages on Pub.dev are the best options. However, don’t follow the crowd blindly; the “likes” metric can be misleading for developers searching for packages that truly fit their use case. Here’s where this system can fall short, with an example to illustrate. The Case of flutter_dotenv When…

flutter

Flutter Packages and Localization

Internationalizing Flutter apps is pretty simple and straightforward as documented in the official website. But there is no clear documentation about localizing a Flutter packages and adding support for more language if package does not support them or overriding default translations. However the the process is same with some minor differences. You may know generating…

flutter

Preparing Flutter App to Publish on Google Play Store – Adding Launcher Icon & Generating Signed AppBundle/APK

Before we can publish our app on Google Play Store we need to give our app a digital signature by signing it. Also we need to provide a good launcher icon for the app instead of default flutter icon and confirm package name, uses permission or other values are set correctly as we needed. So,…