adding some of the paywall bbody back

This commit is contained in:
ggurdin 2024-01-16 14:48:47 -05:00
parent 9eb1a702a3
commit 067b1eaf4e

View file

@ -26,33 +26,34 @@ class SubscriptionPaywall extends StatelessWidget {
textAlign: TextAlign.center, textAlign: TextAlign.center,
), ),
), ),
body: const Padding( body: Padding(
padding: EdgeInsets.all(20), padding: const EdgeInsets.all(20),
// child: ListView( child: ListView(
// children: [ children: [
// if (pangeaController.matrixState.client.rooms.length > 1) ...[ // if (pangeaController.matrixState.client.rooms.length > 1) ...[
// Text( // Text(
// L10n.of(context)!.welcomeBack, // L10n.of(context)!.welcomeBack,
// textAlign: TextAlign.center, // textAlign: TextAlign.center,
// style: const TextStyle(fontSize: 16), // style: const TextStyle(fontSize: 16),
// ), // ),
// const SizedBox(height: 20), // const SizedBox(height: 20),
// ], // ],
// Text( Text(
// L10n.of(context)!.subscriptionDesc, L10n.of(context)!.subscriptionDesc,
// textAlign: TextAlign.center, textAlign: TextAlign.center,
// style: const TextStyle(fontSize: 16), style: const TextStyle(fontSize: 16),
// ), ),
// const SizedBox(height: 20), const SizedBox(height: 20),
// pangeaController.userController.inTrialWindow pangeaController.userController.inTrialWindow
// ? FreeTrialCard( ? FreeTrialCard(
// pangeaController: pangeaController, pangeaController: pangeaController,
// ) )
// : SubscriptionOptions( : const SizedBox.shrink(),
// pangeaController: pangeaController, // : SubscriptionOptions(
// ), // pangeaController: pangeaController,
// ], // ),
// ), ],
),
), ),
); );
} }