UiDrawer constructor

const UiDrawer({
  1. Key? key,
  2. required List<Widget> items,
  3. Widget? header,
  4. Widget? footer,
  5. Color? backgroundColor,
  6. double elevation = 16,
  7. ShapeBorder? shape,
  8. EdgeInsetsGeometry padding = EdgeInsets.zero,
  9. Divider? separator,
})

Implementation

const UiDrawer({
  super.key,
  required this.items,
  this.header,
  this.footer,
  this.backgroundColor,
  this.elevation = 16,
  this.shape,
  this.padding = EdgeInsets.zero,
  this.separator,
});