import 'package:flutter/material.dart'; import 'package:gap/gap.dart'; import 'package:pharmacy_mobile/widgets/page_background_widget.dart'; import 'package:pharmacy_mobile/widgets/text_widget.dart'; import 'package:pharmacy_mobile/widgets/title_widget.dart'; class CustomerPage extends StatelessWidget { const CustomerPage({super.key}); @override Widget build(BuildContext context) { return PopScope( canPop: false, child: Scaffold( body: SingleChildScrollView( child: PageBackgroundWidget( height: MediaQuery.of(context).size.height + 400, child: Center( child: Column( children: [ const Gap(96), const TitleWidget(firstTextSize: 20, secondTextSize: 32), const Gap(32), const TextWidget(text: 'Menu'), const Gap(16), ], ))), ), ), ); } }