NiceDockLayout constructor

const NiceDockLayout({
  1. Key? key,
  2. required Widget center,
  3. Widget? top,
  4. Widget? bottom,
  5. Widget? left,
  6. Widget? right,
  7. double topHeight = 56,
  8. double bottomHeight = 56,
  9. double leftWidth = 200,
  10. double rightWidth = 200,
})

Implementation

const NiceDockLayout({
  super.key,
  required this.center,
  this.top,
  this.bottom,
  this.left,
  this.right,
  this.topHeight = 56,
  this.bottomHeight = 56,
  this.leftWidth = 200,
  this.rightWidth = 200,
});