Fix tick mark on the subscription page

This commit is contained in:
Vishnu Mohandas 2021-02-07 01:17:54 +05:30
parent 3a0c21ddd8
commit 1ebec94517

View file

@ -541,11 +541,12 @@ class SubscriptionPlanWidget extends StatelessWidget {
),
),
Text(plan.price + " per " + plan.period),
Expanded(child: Container()),
isActive
? Expanded(
child: Icon(
Icons.check_circle,
color: Colors.cyan[700],
color: Theme.of(context).accentColor,
),
)
: Container(),