DockedPanelSwitcher constructor

const DockedPanelSwitcher({
  1. Key? key,
  2. required List<Panel> panels,
  3. String? initialPanel,
  4. DockPosition position = DockPosition.left,
  5. double barSize = 40,
  6. double panelSize = 200,
  7. ValueChanged<String?>? onPanelChanged,
  8. ValueChanged<double>? onSizeChanged,
})

Implementation

const DockedPanelSwitcher({
  super.key,
  required this.panels,
  this.initialPanel,
  this.position = DockPosition.left,
  this.barSize = 40,
  this.panelSize = 200,
  this.onPanelChanged,
  this.onSizeChanged,
});