CDKAppSidebars constructor
- Key? key,
- required Widget central,
- bool sidebarLeftIsResizable = true,
- bool sidebarLeftDefaultsVisible = false,
- double sidebarLeftMinWidth = 100.0,
- double sidebarLeftMaxWidth = 200.0,
- Widget? sidebarLeft,
- bool sidebarRightDefaultsVisible = false,
- double sidebarRightWidth = 200.0,
- Widget? sidebarRight,
Implementation
const CDKAppSidebars({
super.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,
});