ScreenVisibleHeight function

double ScreenVisibleHeight(
  1. BuildContext context
)

Implementation

double ScreenVisibleHeight(BuildContext context) {
  var insets = MediaQuery.of(context).viewInsets;
  return ScreenHeight(context) - insets.top - insets.bottom;
}