build method
Implementation
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text('Alert & Snackbar Demo')),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
ElevatedButton(
onPressed: () => showSimpleAlert(context),
child: Text('Show Alert Dialog'),
),
SizedBox(height: 20),
ElevatedButton(
onPressed: () => showSimpleSnackBar(context),
child: Text('Show SnackBar'),
),
],
),
),
);
}