OpenWGridView constructor

const OpenWGridView({
  1. Key? key,
  2. required dynamic nodeState,
  3. required List<CNode> children,
  4. required FGeneralTypeInput crossAxisCount,
  5. required FGeneralTypeInput mainAxisSpacing,
  6. required FGeneralTypeInput crossAxisSpacing,
  7. required FDirection direction,
  8. required bool isPrimary,
  9. required FGeneralTypeInput childAspectRatio,
  10. required bool shrinkWrap,
  11. required JsonGetAttribute jsonGetAttribute,
})

Returns a StaggeredGridView (children: ) in Teta

Implementation

const OpenWGridView({
  super.key,
  required super.nodeState,
  required this.children,
  required this.crossAxisCount,
  required this.mainAxisSpacing,
  required this.crossAxisSpacing,
  required this.direction,
  required this.isPrimary,
  required this.childAspectRatio,
  required this.shrinkWrap,
  required this.jsonGetAttribute,
});