runSpaceEvenly method

NikuWrap runSpaceEvenly()

How the children within a run should be aligned relative to each other in the cross axis.

Using WrapAlignment.spaceEvenly

Equivalent to

Wrap(
  alignment: WrapAlignment.spaceEvenly
)

Implementation

NikuWrap runSpaceEvenly() {
  _runAlignment = WrapAlignment.spaceEvenly;

  return this;
}