launch_review_latest 1.0.0 copy "launch_review_latest: ^1.0.0" to clipboard
launch_review_latest: ^1.0.0 copied to clipboard

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_latest/launch_review_latest.dart';

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

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @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: ElevatedButton(
            child: Text("Rate App"),
            onPressed:
                () => LaunchReviewLatest.launch(
                  androidAppId: "com.mohamednagdy.allquran",
                  iOSAppId: "6740764793",
                ),
          ),
        ),
      ),
    );
  }
}
2
likes
160
points
1.44k
downloads

Publisher

unverified uploader

Weekly Downloads

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

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on launch_review_latest

Packages that implement launch_review_latest