SideMenuStyle constructor

SideMenuStyle({
  1. double fontSize = 0,
  2. double? iconSize = 18,
  3. double? menuWidth = 250,
  4. double itemHeight = 40,
  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.white,
})

Implementation

SideMenuStyle({
  this.fontSize = 0,
  this.iconSize = 18,
  this.menuWidth = 250,
  this.itemHeight = 40,
  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.white,
});