PCLayout0 constructor

const PCLayout0({
  1. Key? key,
  2. Widget? sidebarMenu,
  3. Widget? sidebarBottom,
  4. Widget? titlebar,
  5. Widget? toolbar,
  6. Widget? body,
  7. double sidebarWidth = 200,
  8. String title = 'Ghini Tech',
  9. String? trayIcon,
  10. Future<void> onOpen()?,
  11. Future<void> onClose()?,
})

Implementation

const PCLayout0({
  super.key,
  this.sidebarLogo,
  this.sidebarMenu,
  this.sidebarBottom,
  this.titlebar,
  this.toolbar,
  this.body,
  this.sidebarWidth = 200,
  this.title = 'Ghini Tech',
  this.trayIcon,
  this.onOpen,
  this.onClose,
});