Skip to content

Commit

Permalink
Merge pull request #39 from pangeachat/freezing-fix
Browse files Browse the repository at this point in the history
added back paywall appbar
  • Loading branch information
ggurdin authored Jan 16, 2024
2 parents 39416ba + 9eb1a70 commit 00fcd9c
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions lib/pangea/widgets/subscription/subscription_paywall.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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: [
Expand Down

0 comments on commit 00fcd9c

Please sign in to comment.