maxHScreen method

ContainerBuilder maxHScreen()

max-h-screen -->gt; max-height: 100vh;

Implementation

ContainerBuilder maxHScreen() {
  _maxHeight = double.infinity; // 在Flutter中通过MediaQuery获取屏幕高度
  return this;
}