shouldApplySafeArea static method
Implementation
static bool shouldApplySafeArea(BuildContext context) {
EdgeInsets viewPadding = MediaQuery.of(context).viewPadding;
return viewPadding.bottom > 0;
}
static bool shouldApplySafeArea(BuildContext context) {
EdgeInsets viewPadding = MediaQuery.of(context).viewPadding;
return viewPadding.bottom > 0;
}