NiceDashboardLayout constructor

const NiceDashboardLayout({
  1. Key? key,
  2. required List<NiceDashboardPanel> panels,
  3. int columns = 4,
  4. double cellHeight = 200,
  5. double spacing = 12,
  6. void onLayoutChanged(
    1. List<NiceDashboardPanel> panels
    )?,
  7. bool editable = false,
  8. void onPanelRemoved(
    1. String panelId
    )?,
})

Implementation

const NiceDashboardLayout({
  super.key,
  required this.panels,
  this.columns = 4,
  this.cellHeight = 200,
  this.spacing = 12,
  this.onLayoutChanged,
  this.editable = false,
  this.onPanelRemoved,
});