FlickerFlexibleColumn constructor

const FlickerFlexibleColumn({
  1. Key? key,
  2. List<Widget>? children,
  3. double minWidthPerChild = 300,
  4. double maxWidthPerChild = 2000,
  5. int maxChildrenPerRow = 999,
  6. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.start,
  7. EdgeInsetsGeometry padding = const EdgeInsets.only(right: 8.0),
})

Implementation

const FlickerFlexibleColumn({
  Key? key,
  this.children,
  this.minWidthPerChild = 300,
  this.maxWidthPerChild = 2000,
  this.maxChildrenPerRow = 999,
  this.crossAxisAlignment = CrossAxisAlignment.start,
  this.padding = const EdgeInsets.only(
    right: 8.0,
  ),
}) : super(key: key);