From 46470eebe1d1e6fb1fbf76397b719b0ffdc201e4 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Fri, 16 Jul 2021 13:27:34 +0300 Subject: [PATCH] Add review app button --- lib/ui/app/menu_drawer.dart | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/ui/app/menu_drawer.dart b/lib/ui/app/menu_drawer.dart index ccf4b17a9..ca12bca8b 100644 --- a/lib/ui/app/menu_drawer.dart +++ b/lib/ui/app/menu_drawer.dart @@ -1105,14 +1105,14 @@ void _showAbout(BuildContext context) async { color: Colors.orange, onPressed: () => _showUpdate(context), ), - if (daysActive > 100) - AppButton( - label: localization.reviewApp.toUpperCase(), - iconData: Icons.star, - color: Colors.grey, - onPressed: () => launch(getRateAppURL(context)), - ), ], + if (daysActive > 100 || true) + AppButton( + label: localization.reviewApp.toUpperCase(), + iconData: Icons.star, + color: Colors.purple, + onPressed: () => launch(getRateAppURL(context)), + ), ], ), ),