BasicLayout constructor

const BasicLayout({
  1. Key? key,
  2. Widget? leading,
  3. Widget? title,
  4. Widget? subtitle,
  5. Widget? content,
  6. Widget? trailing,
  7. AlignmentGeometry? leadingAlignment,
  8. AlignmentGeometry? trailingAlignment,
  9. AlignmentGeometry? titleAlignment,
  10. AlignmentGeometry? subtitleAlignment,
  11. AlignmentGeometry? contentAlignment,
  12. double? contentSpacing,
  13. double? titleSpacing,
  14. BoxConstraints? constraints,
})

Implementation

const BasicLayout({
  super.key,
  this.leading,
  this.title,
  this.subtitle,
  this.content,
  this.trailing,
  this.leadingAlignment,
  this.trailingAlignment,
  this.titleAlignment,
  this.subtitleAlignment,
  this.contentAlignment,
  this.contentSpacing,
  this.titleSpacing,
  this.constraints,
});