ArcaneDashboardLayout constructor

const ArcaneDashboardLayout({
  1. Key? key,
  2. required Component child,
  3. required String currentRoute,
  4. required List<DashboardNavGroup> navigation,
  5. Component? sidebarHeader,
  6. Component? sidebarFooter,
  7. Component? topBar,
  8. String sidebarWidth = '256px',
  9. String backgroundColor = 'var(--background)',
  10. String sidebarBackgroundColor = 'var(--card)',
})

Implementation

const ArcaneDashboardLayout({
  super.key,
  required this.child,
  required this.currentRoute,
  required this.navigation,
  this.sidebarHeader,
  this.sidebarFooter,
  this.topBar,
  this.sidebarWidth = '256px',
  this.backgroundColor = 'var(--background)',
  this.sidebarBackgroundColor = 'var(--card)',
});