launch_review 3.0.1 copy "launch_review: ^3.0.1" to clipboard
launch_review: ^3.0.1 copied to clipboard

discontinued
PlatformAndroidiOS

A Flutter plugin to assist in leaving user reviews/ratings in Google Play Store and Apple App Store.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:launch_review/launch_review.dart';

void main() => runApp(MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: Text('Launch App Review')),
        body: Center(
          child: RaisedButton(
            child: Text("Rate App"),
            onPressed: () => LaunchReview.launch(
              androidAppId: "com.iyaffle.kural",
              iOSAppId: "585027354",
            ),
          ),
        ),
      ),
    );
  }
}
345
likes
140
pub points
99%
popularity

Publisher

verified publisheriyaffle.com

A Flutter plugin to assist in leaving user reviews/ratings in Google Play Store and Apple App Store.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on launch_review