EasyDrawer constructor

const EasyDrawer({
  1. Key? key,
  2. List<SideTile>? tiles,
  3. SideBox? topWidget,
  4. SideBox? bottomWidget,
  5. SideBox? topSmallWidget,
  6. SideBox? bottomSmallWidget,
  7. ValueChanged<EasyBody>? onTileTapped,
  8. Color? tileColor,
  9. Color? textColor,
  10. Color? iconColor,
  11. Color? selectedColor,
  12. Color? selectedTileColor,
  13. Color? selectedTextColor,
  14. Color? selectedIconColor,
  15. Color? hoverColor,
  16. required Size size,
})

Easy Drawer

An optional drawer to use if you do not wish to build one yourself.

Implementation

const EasyDrawer({
  Key? key,
  this.tiles,
  this.topWidget,
  this.bottomWidget,
  this.topSmallWidget,
  this.bottomSmallWidget,
  this.onTileTapped,
  this.tileColor,
  this.textColor,
  this.iconColor,
  this.selectedColor,
  this.selectedTileColor,
  this.selectedTextColor,
  this.selectedIconColor,
  this.hoverColor,
  required this.size,
}) : super(key: key);