Adding a Drawer to your Flutter App
A drawer can be add to a scafold
My drawer screen class
class DrawerScreen extends StatelessWidget {
const DrawerScreen({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Drawer(
child: ListView(
...
ohiscode.hashnode.dev2 min read