Untitled
plain_text
a month ago
1.0 kB
0
Indexable
Never
class PaywallScreen extends StatelessWidget { const PaywallScreen({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return Scaffold( backgroundColor: const Color(0xFFBCDDEB), body: Column( mainAxisAlignment: MainAxisAlignment.center, crossAxisAlignment: CrossAxisAlignment.center, children: [ Row( mainAxisAlignment: MainAxisAlignment.end, children: [ IconButton( icon: const Icon(Icons.close), onPressed: () { // Navigate to the home screen Navigator.pop(context); }, ), ], ), const Text( 'Free full access to Calmify', style: TextStyle( fontSize: 24, color: Color(0xFF353743), fontWeight: FontWeight.bold, ), ), const SizedBox(height: 20), ], ), ); } }