SideMenuStyle constructor
SideMenuStyle({
- double fontSize = 0,
- double? iconSize = 18,
- double itemHeight = 35,
- 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.transparent,
- Color expItemSelectBGColor = Colors.transparent,
- Color expItemUnselectBGColor = Colors.transparent,
- Color expItemSelectColor = Colors.blue,
- 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
});