https://github.com/taym95/flutter_ios_store_rate
This plugin exposes the native iOS APIs to ask the user to rate the app.
https://github.com/taym95/flutter_ios_store_rate
flutter ios rate rating
Last synced: 16 days ago
JSON representation
This plugin exposes the native iOS APIs to ask the user to rate the app.
- Host: GitHub
- URL: https://github.com/taym95/flutter_ios_store_rate
- Owner: Taym95
- License: mit
- Created: 2019-05-09T15:35:09.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-09T15:52:42.000Z (about 7 years ago)
- Last Synced: 2025-01-24T04:54:07.797Z (over 1 year ago)
- Topics: flutter, ios, rate, rating
- Language: Dart
- Size: 61.5 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# flutter_ios_store_rate
This plugin exposes the native iOS APIs to ask the user to rate the app.

## Usage
* Add `flutter_ios_store_rate` to your `pubspec.yaml`file.
* Example:
```
import'package:flutter_ios_store_rate/flutter_ios_store_rate.dart';
bool isAvailable = await FlutterIosStoreRate.isAvailable;
if(isAvailable) {
FlutterIosStoreRate.requestReview();
}
```
## Getting Started
This project is a starting point for a Flutter
[plug-in package](https://flutter.dev/developing-packages/),
a specialized package that includes platform-specific implementation code for
Android and/or iOS.
For help getting started with Flutter, view our
[online documentation](https://flutter.dev/docs), which offers tutorials,
samples, guidance on mobile development, and a full API reference.