vertical property

bool vertical

Implementation

bool get vertical => _vertical;
void vertical=(bool _newVal)

Implementation

set vertical(bool _newVal) {
  if (_vertical == _newVal) {
    return;
  }
  _vertical = _newVal;
  if (_vertical) {
    nodeRoot.style.flexDirection = 'column';
  } else {
    nodeRoot.style.flexDirection = 'row';
  }

  stride = _stride;
  scrollable = _scrollable;
}