MobileSidebar constructor

MobileSidebar({
  1. required List<MenuItem> items,
  2. bool showList = true,
  3. FloatingActionButton? floatingActionButton,
  4. bool persistIndex = false,
  5. FloatingActionButtonLocation? floatingActionButtonLocation,
  6. double breakPoint = 800,
  7. bool mobileBottomNavigation = false,
  8. bool sideViewNavigation = false,
  9. String tag = 'index',
  10. bool nestedNavigation = false,
  11. int maxTabs = 4,
  12. Color shadowColor = const Color(0x802196F3),
  13. AppBar? appBar,
})

Implementation

MobileSidebar({
  required this.items,
  this.showList = true,
  this.floatingActionButton,
  this.persistIndex = false,
  this.floatingActionButtonLocation,
  this.breakPoint = 800,
  this.mobileBottomNavigation = false,
  this.sideViewNavigation = false,
  this.tag = 'index',
  this.nestedNavigation = false,
  this.maxTabs = 4,
  this.shadowColor = const Color(0x802196F3),
  this.appBar,
});