safeAreaWithPaddingAndTop method

EdgeInsets safeAreaWithPaddingAndTop(
  1. double top
)

safe area method

Implementation

EdgeInsets safeAreaWithPaddingAndTop(double top) {
  return MediaQuery.of(context).padding + EdgeInsets.only(top: top);
}