CDKAppSidebars constructor

const CDKAppSidebars(
  1. {Key? key,
  2. required Widget central,
  3. bool sidebarLeftIsResizable = true,
  4. bool sidebarLeftDefaultsVisible = false,
  5. double sidebarLeftMinWidth = 100.0,
  6. double sidebarLeftMaxWidth = 200.0,
  7. Widget? sidebarLeft,
  8. bool sidebarRightDefaultsVisible = false,
  9. double sidebarRightWidth = 200.0,
  10. Widget? sidebarRight}
)

Implementation

const CDKAppSidebars({
  Key? key,
  required this.central,
  this.sidebarLeftIsResizable = true,
  this.sidebarLeftDefaultsVisible = false,
  this.sidebarLeftMinWidth = 100.0,
  this.sidebarLeftMaxWidth = 200.0,
  this.sidebarLeft,
  this.sidebarRightDefaultsVisible = false,
  this.sidebarRightWidth = 200.0,
  this.sidebarRight,
}) : super(key: key);