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:
ggurdin 2024-05-07 16:10:32 -04:00 committed by GitHub
commit 1a14adfb8a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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,