crossAxisCount property

int get crossAxisCount

The number of columns in the grid.

Implementation

int get crossAxisCount => _crossAxisCount;
set crossAxisCount (int v)

Sets the column count and marks the render object as needing layout.

Implementation

set crossAxisCount(int v) {
  if (_crossAxisCount == v) return;
  _crossAxisCount = v;
  markNeedsLayout();
}