minContentHeight property

double minContentHeight

Implementation

double get minContentHeight {
  final height = windowSize.height;
  final keypoints = KeyPointInterpolator({
    0: 320,
    320: 320, // iPhone SE landscape
    1024: 400,
  });
  return keypoints.interpolate(height);
}