endDrawer property

JsonWidgetData? endDrawer
final

A panel displayed to the side of the body, often hidden on mobile devices. Swipes in from right-to-left (TextDirection.ltr) or left-to-right (TextDirection.rtl)

Typically a Drawer.

To open the drawer, use the ScaffoldState.openEndDrawer function.

To close the drawer, use either ScaffoldState.closeEndDrawer, Navigator.pop or press the escape key on the keyboard.

{@tool dartpad} To disable the drawer edge swipe, set the Scaffold.endDrawerEnableOpenDragGesture to false. Then, use ScaffoldState.openEndDrawer to open the drawer and Navigator.pop to close it.

** See code in examples/api/lib/material/scaffold/scaffold.end_drawer.0.dart ** {@end-tool}

Implementation

final JsonWidgetData? endDrawer;