SideMenuStyle constructor

SideMenuStyle({
  1. double fontSize = 0,
  2. double? iconSize = 18,
  3. double? menuWidth = 200,
  4. double itemHeight = 35,
  5. bool divider = true,
  6. bool rightBorder = true,
  7. Color itemSelectBGColor = const Color.fromRGBO(46, 173, 250, 0.3),
  8. Color dividerColor = const Color.fromRGBO(153, 153, 153, 0.3),
  9. Color itemSelectColor = Colors.white,
  10. Color itemUnselectColor = Colors.black,
  11. Color itemUnselectBGColor = Colors.transparent,
  12. Color expItemSelectBGColor = Colors.transparent,
  13. Color expItemUnselectBGColor = Colors.transparent,
  14. Color expItemSelectColor = Colors.blue,
  15. Color expItemUnselectColor = Colors.black,
})

Implementation

SideMenuStyle({
  this.fontSize = 0,
  this.iconSize = 18,
  this.menuWidth = 200,
  this.itemHeight = 35,
  this.divider = true,
  this.rightBorder = true,
  this.itemSelectBGColor = const Color.fromRGBO(46, 173, 250, 0.3),
  this.dividerColor = const Color.fromRGBO(153, 153, 153, 0.3),
  this.itemSelectColor = Colors.white,
  this.itemUnselectColor = Colors.black,
  this.itemUnselectBGColor = Colors.transparent,
  this.expItemSelectBGColor = Colors.transparent,
  this.expItemUnselectBGColor = Colors.transparent,
  this.expItemSelectColor = Colors.blue,
  this.expItemUnselectColor = Colors.black
});