responsive static method

EdgeInsets responsive({
  1. double mobile = 16.0,
  2. double tablet = 24.0,
  3. double desktop = 32.0,
})

Create responsive spacing that adapts to screen size

Implementation

static EdgeInsets responsive({
  double mobile = 16.0,
  double tablet = 24.0,
  double desktop = 32.0,
}) {
  // For email, we'll use mobile-first approach
  // In future, we can make this responsive with media queries
  return EdgeInsets.all(mobile);
}