ConstraintLayout constructor

ConstraintLayout({
  1. Key? key,
  2. List<ConstraintDefine>? childConstraints,
  3. List<Widget>? children,
  4. bool showLayoutPerformanceOverlay = false,
  5. bool showHelperWidgets = false,
  6. bool showClickArea = false,
  7. bool showZIndex = false,
  8. bool showChildDepth = false,
  9. bool debugPrintConstraints = false,
  10. double width = matchParent,
  11. double height = matchParent,
  12. double? size,
  13. ConstraintLayoutController? controller,
  14. bool rtl = false,
})

Implementation

ConstraintLayout({
  Key? key,
  this.childConstraints,
  List<Widget>? children,
  this.showLayoutPerformanceOverlay = false,
  this.showHelperWidgets = false,
  this.showClickArea = false,
  this.showZIndex = false,
  this.showChildDepth = false,
  this.debugPrintConstraints = false,
  this.width = matchParent,
  this.height = matchParent,
  this.size,
  this.controller,
  this.rtl = false,
}) : super(
        key: key,
        children: children ?? [],
      );