getResponsiveHorizontalPadding function

EdgeInsetsGeometry getResponsiveHorizontalPadding(
  1. BuildContext context
)

Fonction utilitaire pour obtenir le padding horizontal responsive

Implementation

EdgeInsetsGeometry getResponsiveHorizontalPadding(BuildContext context) {
  return EdgeInsets.symmetric(
    horizontal: SFBreakpoints.getHorizontalMargin(
      SFBreakpoints.getScreenSize(context),
    ),
  );
}