SideMenuStyle constructor
SideMenuStyle({
- double fontSize = 0,
- double? iconSize = 18,
- double itemHeight = 40,
- bool divider = true,
- bool rightBorder = true,
- Color itemSelectBGColor = const Color.fromRGBO(46, 173, 250, 0.3),
- Color dividerColor = const Color.fromRGBO(153, 153, 153, 0.3),
- Color itemSelectColor = Colors.white,
- Color itemUnselectColor = Colors.black,
- 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,
});