getBottomSafeAreaHeight static method

double getBottomSafeAreaHeight(
  1. BuildContext context
)

Get bottom safe area height

Implementation

static double getBottomSafeAreaHeight(BuildContext context) {
  return MediaQuery.of(context).padding.bottom;
}