Flutter is one of the fastest-rising frameworks for developing cross-platform apps. At RavSam, you also use Flutter for developing mobile apps. One of the biggest advantages of Flutter is its plugin ecosystem. There are tons of plugins available on pub.dev build by the community that can be integrated right on the go with your Flutter app.
In this article, you’ll take a look at some of those plugins which can be used almost in any Flutter app and enhance the User Experience to a great extent.
Contents
1. Share
Share is a plugin that you can use to share the app content via other apps using the platform’s share dialog. It works on both Android and iOS and can be used in a social media app. According to its developers, a backward-compatible 1.0.0 version will be released soon as the plugin has reached a stable API.
Stats on Pub.dev
Likes | Pub Points | Popularity |
---|---|---|
691 | 90 | 99% |
2. Geolocator
Geolocator is one of the must-use plugins if you are building an app that shows content based on the location of the user. It provides an easy-to-implement API that can be used to access platform-specific location services. You can access the last known location, current location of the device, and even get continuous location updates. This plugin is of great use in Cab Booking apps, Food Delivery apps, and many more.
Stats on Pub.dev
Likes | Pub Points | Popularity |
---|---|---|
929 | 100 | 99% |
3. URL Launcher
URL Launcher is one of the most famous plugins which can be used on almost every production Flutter app. It is a plugin for launching different URL schemes like:
https://example.com
mailto:foo@bar.com
tel:9876543210
.
It supports every platform that Flutter targets such as iOS, Android, Web, Windows, macOS, and Linux.
Stats on Pub.dev
Likes | Pub Points | Popularity |
---|---|---|
1368 | 110 | 100% |
4. Shimmer
Shimmer is a brilliant plugin to enhance the UI/UX of an app while the content is loading. It is visually appealing as it gives the user an indication that the content is being fetched from the Internet. This package provides a widget for adding a shimmer effect in the Flutter project.
Stats on Pub.dev
Likes | Pub Points | Popularity |
---|---|---|
685 | 110 | 98% |
5. Connectivity
There may be times when a user opens your app but is not connected to the WiFi or Mobile Internet connection. In circumstances like these, you can add this plugin to your Flutter app for discovering network connectivity and deciding the UI state accordingly. This plugin provides the developers with a great way to distinguish between Mobile and WiFi connections. According to its developers, a backward-compatible 1.0.0 version will be released soon as the plugin has reached a stable API.
Stats on Pub.dev
Likes | Pub Points | Popularity |
---|---|---|
788 | 95 | 99% |