Merge pull request #39 from pangeachat/freezing-fix
added back paywall appbar
This commit is contained in:
commit
00fcd9c076
1 changed files with 13 additions and 13 deletions
|
|
@ -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…
Add table
Reference in a new issue