All Projects → Purus → Launch_review

Purus / Launch_review

Licence: mit
A Flutter plugin to assist in leaving user reviews/ratings in the Google Play Store. Supports both Android and iOS.

Programming Languages

java
68154 projects - #9 most used programming language
dart
5743 projects

Projects that are alternatives of or similar to Launch review

React Native In App Review
The Google Play In-App Review API, App store rating API lets you prompt users to submit Play Store or App store ratings and reviews without the inconvenience of leaving your app or game.
Stars: ✭ 175 (+78.57%)
Mutual labels:  appstore, review
App review
App Review - Request and Write Reviews and Open Store Listing for Android and iOS in Flutter. Maintainer: @rodydavis
Stars: ✭ 213 (+117.35%)
Mutual labels:  appstore, flutter-plugin
React Native Store Review
Rate on App/Play Store directly in your React Native app
Stars: ✭ 437 (+345.92%)
Mutual labels:  appstore, review
Intent
A simple Flutter plugin to deal with Android Intents, written with ❤️
Stars: ✭ 79 (-19.39%)
Mutual labels:  flutter-plugin
Monorepo
Open source platform for code review automation ✅
Stars: ✭ 81 (-17.35%)
Mutual labels:  review
Flutter inappwebview
A Flutter plugin that allows you to add an inline webview, to use a headless webview, and to open an in-app browser window.
Stars: ✭ 1,259 (+1184.69%)
Mutual labels:  flutter-plugin
Amap location fluttify
高德地图 定位组件 Flutter插件
Stars: ✭ 97 (-1.02%)
Mutual labels:  flutter-plugin
Flutter Otp Authentication
A Flutter based OTP Authentication component, used to verify your mobile number with OTP (One Time Password) using Firebase Authentication.
Stars: ✭ 78 (-20.41%)
Mutual labels:  flutter-plugin
Flutter weather bg
A rich and cool weather dynamic background plug-in
Stars: ✭ 89 (-9.18%)
Mutual labels:  flutter-plugin
Notgif
Play & Share your GIFs in Photos
Stars: ✭ 84 (-14.29%)
Mutual labels:  appstore
Json to form
A flutter plugin to use convert Json to Form
Stars: ✭ 82 (-16.33%)
Mutual labels:  flutter-plugin
Flutter web auth
Flutter plugin for authenticating a user with a web service
Stars: ✭ 81 (-17.35%)
Mutual labels:  flutter-plugin
Cargo Crev
A cryptographically verifiable code review system for the cargo (Rust) package manager.
Stars: ✭ 1,268 (+1193.88%)
Mutual labels:  review
Firebase dart sdk
Unofficial Firebase Flutter SDK. Maintainer: @long1eu
Stars: ✭ 80 (-18.37%)
Mutual labels:  flutter-plugin
App Store Reviews
Node.js module to download user reviews from the iTunes Store and the Mac App Store
Stars: ✭ 93 (-5.1%)
Mutual labels:  review
Wiiu Hbas
[Wii U] Homebrew App Store - download apps for HBL (Legacy)
Stars: ✭ 78 (-20.41%)
Mutual labels:  appstore
Appstorelibrary
Android AppStore library for Play, Amazon, and OneStore(one of the korean appstore) app store
Stars: ✭ 86 (-12.24%)
Mutual labels:  appstore
App Store Tailwind
Mojave App Store Rebuild with Tailwind CSS, Electron and Vue
Stars: ✭ 82 (-16.33%)
Mutual labels:  appstore
React Native Upload
( MacOs ) 一键打包部署 android/ios APP到各个测试平台和App Store。ci/cd神器,拒绝繁琐
Stars: ✭ 82 (-16.33%)
Mutual labels:  appstore
In app review
A Flutter plugin for showing the In-App Review/System Rating pop up on Android, IOS, and MacOS. It makes it easy for users to rate your app.
Stars: ✭ 85 (-13.27%)
Mutual labels:  flutter-plugin

launch_review

pub package

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.

iOS

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>

Usage

To use this plugin, add launch_review as a dependency in your pubspec.yaml file.

Example

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.

iOS Specifics

Set writeReview to false to only show the app store page. Used only in iOS.

LaunchReview.launch(writeReview: false,iOSAppId: "585027354");

License

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].