ResponsiveContainer constructor

const ResponsiveContainer({
  1. Key? key,
  2. required Widget child,
  3. double? mobileMaxWidth,
  4. double? tabletMaxWidth,
  5. double? desktopMaxWidth,
  6. EdgeInsets? mobilePadding,
  7. EdgeInsets? tabletPadding,
  8. EdgeInsets? desktopPadding,
  9. bool centerContent = true,
})

Implementation

const ResponsiveContainer({
  super.key,
  required this.child,
  this.mobileMaxWidth,
  this.tabletMaxWidth,
  this.desktopMaxWidth,
  this.mobilePadding,
  this.tabletPadding,
  this.desktopPadding,
  this.centerContent = true,
});