TLayout constructor

const TLayout({
  1. Key? key,
  2. List<TSidebarItem> items = const [],
  3. Widget? profile,
  4. List<Widget>? actions,
  5. required Widget child,
  6. String? pageTitle,
  7. double mainCardRadius = 28,
  8. double width = 275,
  9. double minifiedWidth = 80,
  10. bool isMinimized = false,
})

Implementation

const TLayout({
  super.key,
  this.items = const [],
  this.logo,
  this.profile,
  this.actions,
  required this.child,
  this.pageTitle,
  this.mainCardRadius = 28,
  this.width = 275,
  this.minifiedWidth = 80,
  this.isMinimized = false,
});