in_app_review 0.1.0 copy "in_app_review: ^0.1.0" to clipboard
in_app_review: ^0.1.0 copied to clipboard

outdated

Flutter plugin for showing the In-App Review/System Rating pop up on Android and IOS. Makes it easy for users to rate your app.

example/lib/main.dart

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

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

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

class _MyAppState extends State<MyApp> {
  final InAppReview _inAppReview = InAppReview.instance;
  String _appStoreId = '';

  void _setAppStoreId(String id) => _appStoreId = id;

  Future<void> _requestReview() async {
    if (await _inAppReview.isAvailable()) {
      _inAppReview.requestReview();
    }
  }

  Future<void> _openStoreListing() =>
      _inAppReview.openStoreListing(iOSAppStoreId: _appStoreId);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: const Text('InAppReview Example')),
        body: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: [
            TextField(
              onChanged: _setAppStoreId,
              decoration: InputDecoration(hintText: 'IOS App Store ID'),
            ),
            RaisedButton(
              onPressed: _requestReview,
              child: Text('Request Review'),
            ),
            RaisedButton(
              onPressed: _openStoreListing,
              child: Text('Open Store Listing'),
            ),
          ],
        ),
      ),
    );
  }
}
1788
likes
0
pub points
99%
popularity

Publisher

verified publisherbritannio.dev

Flutter plugin for showing the In-App Review/System Rating pop up on Android and IOS. Makes it easy for users to rate your app.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, package_info, url_launcher

More

Packages that depend on in_app_review