app_review_helper 0.9.3 app_review_helper: ^0.9.3 copied to clipboard
This plugin will make it easier for you to use in-app review with minimal conditions.
0.9.3 #
- Fixed: shows the
satisfactionLikeIcon
incorrectly.
0.9.2 #
-
Add
macos
to the supported platform list. -
Add
ReviewDialog
abstract so we can easily implement custom dialogs. -
Add
DefaultReviewDialog
which implementsReviewDialog
to show the default dialog. -
Add
AdaptiveReviewDialog
which is the same asDefaultReviewDialog
but can adapt with the specific platform UI design usingAlertDialog.adaptive
. -
Mark
ReviewDialogConfig
as deprecated (but not a Breaking Change). Migration guide:- Old:
instance.initial( reviewDialogConfig: ReviewDialogConfig( context: context, isUsefulText: 'How do you feel about this app?', likeText: 'Like', dislikeText: 'Dislike', whatCanWeDoText: 'Please let us know what we can do to improve this app', submitButtonText: 'Submit', cancelButtonText: 'Cancel', anonymousText: 'Completely anonymous', whatCanWeDo: (opinion) { /// You can save this user's opinion to your database debugPrint(opinion); }, ), );
- Now:
instance.initial( reviewDialog: DefaultReviewDialog( context: context, satisfactionText: 'How do you feel about this app?', satisfactionLikeText: 'Like', satisfactionLikeIcon: const Icon(Icons.thumb_up), satisfactionDislikeText: 'Dislike', satisfactionDislikeIcon: const Icon(Icons.thumb_down, color: Colors.grey), opinionText: 'Please let us know what we can do to improve this app', opinionSubmitButtonText: 'Submit', opinionCancelButtonText: 'Cancel', opinionAnonymousText: 'Completely anonymous', opinionFeedback: (opinion) { /// You can save this user's opinion to your database debugPrint(opinion); }, ), );
0.9.1 #
- Correctly show the review.
- Reduced the package size.
0.9.0 #
- Bump
conditional_trigger
tov0.4.0
(With BREAKCHANGE). - Change from
ReviewState.dontSatisfyWithMinCalls
,ReviewState.dontSatisfyWithMinDays
andReviewState.dontSatisfyWithMinCallsAndDays
toReviewState.notSatisfiedWithMinCalls
,ReviewState.notSatisfiedWithMinDays
andReviewState.notSatisfiedWithMinCallsAndDays
.
0.8.0 #
- Bump dependencies.
0.7.1 #
- Change
package_info_plus version
to^4.2.0
.
0.7.0 #
- Upgrade dependencies.
0.6.1 #
- Update comments.
- Update homepage URL.
0.6.0 #
- Bump dependencies.
0.5.0 #
- Rename from
ReviewResult
toReviewState
and:- Rename from
minCallThisFunction
tominCalls
. - Rename
dontSatisfyWithMinCallThisFunction
todontSatisfyWithMinCalls
. - Add
dontSatisfyWithMinCallsAndDays
.
- Rename from
- Bump dependencies.
0.4.3 #
- Add anonymous text under text field of the opinion dialog.
0.4.2 #
- Improves pub scores.
0.4.1 #
- Update dependencies.
- Update screenshots.
0.4.0-rc.2 #
- Update dependencies.
0.4.0-rc.1 #
- Add dialogs to ask users about their opinions before requesting the review.
- Improve code logic.
- Add tests.
- Add example.
0.3.0 #
- Update dependencies.
- Update dart sdk to ">=2.18.0 <4.0.0`, flutter min sdk to "3.3.0".
0.2.1 #
- [BUG] Fixed the way calculating
minDays
.
0.2.0 #
- [BREAKING CHANGE] Change
keepRemind
default value tofalse
. - Add
remindedVersions
parameter to control the version to allow reminding.
0.1.1 #
- Use
in_app_review
instead ofapp_review
package.
0.1.0 #
- [BREAKING CHANGE] Move from static method to instance:
- Before:
AppReviewHelper.initial()
- Now:
AppReviewHelper.instance.initial()
- Before:
0.0.3+1 #
- Do nothing for the platforms that are not Android and iOS, only
openStore
will launch if thefallbackUrl
is available.
0.0.3 #
- Added
keepRemind
parameter to disable the default behavior (default behavior is auto requests for the review on each new version), and it'strue
by default. openStore
method will open thefallbackUrl
if available on not supported platforms.
0.0.2 #
- Add
openStore
to open the current app on the store.
0.0.1 #
- Initial release.