getResponsiveHorizontalPadding function
Fonction utilitaire pour obtenir le padding horizontal responsive
Implementation
EdgeInsetsGeometry getResponsiveHorizontalPadding(BuildContext context) {
return EdgeInsets.symmetric(
horizontal: SFBreakpoints.getHorizontalMargin(
SFBreakpoints.getScreenSize(context),
),
);
}