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

discontinued
outdated

A Flutter plugin for Android to assist in leaving user reviews/ratings in the Google Play Store.

example/lib/main.dart

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

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

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

class _MyAppState extends State<MyApp> {
  @override
  initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
        home: new Scaffold(
            appBar: new AppBar(title: new Text('Launch App Review')),
            body: new Center(
                child: new RaisedButton(
                    child: new Text("Rate App"),
                    onPressed: () {
                      LaunchReview.launch("com.iyaffle.rangoli");
                    }))));
  }
}
345
likes
0
pub points
99%
popularity

Publisher

verified publisheriyaffle.com

A Flutter plugin for Android to assist in leaving user reviews/ratings in the Google Play Store.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on launch_review