Merge pull request #39 from pangeachat/freezing-fix

added back paywall appbar
pull/1011/head
ggurdin 2 years ago committed by GitHub
commit 00fcd9c076
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -14,19 +14,19 @@ class SubscriptionPaywall extends StatelessWidget {
@override
Widget build(BuildContext context) {
return const Scaffold(
// appBar: AppBar(
// centerTitle: true,
// leading: CloseButton(onPressed: Navigator.of(context).pop),
// title: Text(
// L10n.of(context)!.getAccess,
// style: const TextStyle(
// fontSize: 20,
// ),
// textAlign: TextAlign.center,
// ),
// ),
body: Padding(
return Scaffold(
appBar: AppBar(
centerTitle: true,
leading: CloseButton(onPressed: Navigator.of(context).pop),
title: Text(
L10n.of(context)!.getAccess,
style: const TextStyle(
fontSize: 20,
),
textAlign: TextAlign.center,
),
),
body: const Padding(
padding: EdgeInsets.all(20),
// child: ListView(
// children: [

Loading…
Cancel
Save