Merge pull request #174 from pangeachat/paywall-fix
don't should no info necessary message if user is not in trial period
This commit is contained in:
commit
1a14adfb8a
1 changed files with 6 additions and 5 deletions
|
|
@ -35,11 +35,12 @@ class PaywallCard extends StatelessWidget {
|
|||
style: BotStyle.text(context),
|
||||
textAlign: TextAlign.center,
|
||||
),
|
||||
Text(
|
||||
L10n.of(context)!.noPaymentInfo,
|
||||
style: BotStyle.text(context),
|
||||
textAlign: TextAlign.center,
|
||||
),
|
||||
if (inTrialWindow)
|
||||
Text(
|
||||
L10n.of(context)!.noPaymentInfo,
|
||||
style: BotStyle.text(context),
|
||||
textAlign: TextAlign.center,
|
||||
),
|
||||
const SizedBox(height: 15.0),
|
||||
SizedBox(
|
||||
width: double.infinity,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue