updateViewDimensions method

void updateViewDimensions()

Implementation

void updateViewDimensions() {
  _width = widget.width ?? MediaQuery.of(context).size.width;
  _cellWidth = _width / 7;
  _cellHeight = _cellWidth / widget.cellAspectRatio;
  _height = _cellHeight * 6;
}