in_app_review 1.0.3 in_app_review: ^1.0.3 copied to clipboard
Flutter plugin for showing the In-App Review/System Rating pop up on Android, IOS and MacOS. Makes it easy for users to rate your app.
import 'dart:io';
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 = '';
String _microsoftStoreId = '';
bool _isAvailable;
@override
void initState() {
super.initState();
WidgetsBinding.instance.addPostFrameCallback((_) {
_inAppReview
.isAvailable()
.then(
(bool isAvailable) => setState(
() => _isAvailable = isAvailable && !Platform.isAndroid,
),
)
.catchError(() => setState(() => _isAvailable = false));
});
}
void _setAppStoreId(String id) => _appStoreId = id;
void _setMicrosoftStoreId(String id) => _microsoftStoreId = id;
Future<void> _requestReview() => _inAppReview.requestReview();
Future<void> _openStoreListing() => _inAppReview.openStoreListing(
appStoreId: _appStoreId,
microsoftStoreId: _microsoftStoreId,
);
@override
Widget build(BuildContext context) {
const loadingMessage = 'LOADING';
const availableMessage = 'AVAILABLE';
const unavailableMessage = 'UNAVAILABLE';
return MaterialApp(
home: Scaffold(
appBar: AppBar(title: const Text('InAppReview Example')),
body: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(
'InAppReview status: ${_isAvailable == null ? loadingMessage : _isAvailable ? availableMessage : unavailableMessage}',
),
TextField(
onChanged: _setAppStoreId,
decoration: InputDecoration(hintText: 'App Store ID'),
),
TextField(
onChanged: _setMicrosoftStoreId,
decoration: InputDecoration(hintText: 'Microsoft Store ID'),
),
RaisedButton(
onPressed: _requestReview,
child: Text('Request Review'),
),
RaisedButton(
onPressed: _openStoreListing,
child: Text('Open Store Listing'),
),
],
),
),
);
}
}