DynamicColumnLayout constructor

const DynamicColumnLayout({
  1. Key? key,
  2. required List<Widget> children,
  3. double spacing = 20.0,
  4. double runSpacing = 20.0,
  5. double width = 300.0,
  6. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.start,
  7. MainAxisAlignment? mainAxisAlignment,
  8. List<double>? widgetWidths,
  9. List<int>? widgetRatios,
  10. int? widgetsPerRow,
  11. List<List<int>>? widgetRatiosMobile,
  12. num? mobileBreakpoint,
  13. String? title,
  14. Widget? subtitle,
})

Implementation

const DynamicColumnLayout(
    {super.key,
    required this.children,
    this.spacing = 20.0,
    this.runSpacing = 20.0,
    this.width = 300.0,
    this.crossAxisAlignment = CrossAxisAlignment.start,
    this.mainAxisAlignment,
    this.widgetWidths,
    this.widgetRatios,
    this.widgetsPerRow,
    this.widgetRatiosMobile,
    this.mobileBreakpoint,
    this.title,
    this.subtitle});