Add review app button

This commit is contained in:
Hillel Coren 2021-07-16 13:27:34 +03:00
parent 38a511716f
commit 46470eebe1
1 changed files with 7 additions and 7 deletions

View File

@ -1105,15 +1105,15 @@ void _showAbout(BuildContext context) async {
color: Colors.orange,
onPressed: () => _showUpdate(context),
),
if (daysActive > 100)
],
if (daysActive > 100 || true)
AppButton(
label: localization.reviewApp.toUpperCase(),
iconData: Icons.star,
color: Colors.grey,
color: Colors.purple,
onPressed: () => launch(getRateAppURL(context)),
),
],
],
),
),
),