maxContentWidth property

double maxContentWidth

Implementation

double get maxContentWidth {
  final width = windowSize.width;
  final keypoints = KeyPointInterpolator({
    0: 0,
    720: 720,
    1024: 1024.0 * 0.75,
    2048: 1024,
  });
  return keypoints.interpolate(width);
}