Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Plugins | 16,786 | 8 | 2,204 | 7 months ago | 16 | July 20, 2023 | 1 | bsd-3-clause | Dart | |
Plugins for Flutter maintained by the Flutter team | ||||||||||
Flutter Desktop Embedding | 7,088 | 8 | 5 months ago | 22 | July 13, 2023 | 3 | apache-2.0 | C++ | ||
Experimental plugins for Flutter for Desktop | ||||||||||
Go Flutter | 5,676 | 22 | 30 | 25 days ago | 76 | July 24, 2022 | 63 | bsd-3-clause | Go | |
Flutter on Windows, MacOS and Linux - based on Flutter Embedding, Go and GLFW. | ||||||||||
Flutter Ui Nice | 3,534 | 4 months ago | 8 | Dart | ||||||
More than 130+ pages in this beautiful app and more than 45 developers has contributed to it. | ||||||||||
Figmatocode | 3,185 | 15 days ago | 21 | gpl-3.0 | TypeScript | |||||
Generate responsive pages and apps on HTML, Tailwind, Flutter and SwiftUI. | ||||||||||
Flutter_inappwebview | 2,700 | 1 | 128 | 4 days ago | 100 | June 12, 2023 | 821 | apache-2.0 | Dart | |
A Flutter plugin that allows you to add an inline webview, to use a headless webview, and to open an in-app browser window. | ||||||||||
Sqflite | 2,695 | 799 | 204 | 7 days ago | 160 | July 26, 2023 | 168 | bsd-2-clause | Dart | |
SQLite flutter plugin | ||||||||||
Flutter_local_notifications | 2,262 | 108 | 101 | 13 days ago | 251 | August 24, 2023 | 40 | bsd-3-clause | Dart | |
A Flutter plugin for displaying local notifications on Android, iOS, macOS and Linux | ||||||||||
Flutter Study | 2,254 | 3 years ago | 5 | |||||||
Flutter Study | ||||||||||
Flutter Intellij | 1,894 | 2 days ago | 557 | bsd-3-clause | Java | |||||
Flutter Plugin for IntelliJ |
A Flutter plugin to assist in leaving user reviews/ratings in Google Play Store and Apple App Store.
NOTE: Please feel free to send a PR to add more functionalities.
Thanks to Edouard Marquez for adding the iOS functionality.
For iOS 9 and above, your Info.plist
file MUST have the following:
<key>LSApplicationQueriesSchemes</key>
<array>
<string>itms-beta</string>
<string>itms</string>
</array>
To use this plugin, add launch_review
as a dependency in your pubspec.yaml file.
Import the library via
import 'package:launch_review/launch_review.dart';
Then invoke the static launch
method of LaunchReview
anywhere in your Dart code. If no arguments are provided, it will consider the current package.
LaunchReview.launch();
To open the App Store page for any other applications, you can pass the app Id.
LaunchReview.launch(androidAppId: "com.iyaffle.rangoli",
iOSAppId: "585027354");
This plugin is inspired by the Cordova plugin cordova-launch-review created by dpa99c.
Set writeReview to false to only show the app store page. Used only in iOS.
LaunchReview.launch(writeReview: false,iOSAppId: "585027354");
The MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.