contentPadding property

EdgeInsets get contentPadding

Implementation

EdgeInsets get contentPadding {
  if (AppBreakpoints.of(context).from(EBreakpoints.mobile)) {
    return EdgeInsets.symmetric(
      vertical: AppBreakpoints.of(context).contentVerticalInsets,
      horizontal: AppBreakpoints.of(context).contentInsets,
    );
  }

  return EdgeInsets.zero;
}