drawer property
A panel displayed to the side of the body, often hidden on mobile devices. Swipes in from either left-to-right (TextDirection.ltr) or right-to-left (TextDirection.rtl)
Typically a Drawer.
To open the drawer, use the ScaffoldState.openDrawer function.
To close the drawer, use either ScaffoldState.closeDrawer, Navigator.pop or press the escape key on the keyboard.
{@tool dartpad} To disable the drawer edge swipe on mobile, set the Scaffold.drawerEnableOpenDragGesture to false. Then, use ScaffoldState.openDrawer to open the drawer and Navigator.pop to close it.
** See code in examples/api/lib/material/scaffold/scaffold.drawer.0.dart ** {@end-tool}
Implementation
final Widget? drawer;