ResponsiveContainer constructor

const ResponsiveContainer({
  1. Key? key,
  2. Widget? child,
  3. Widget? mobileChild,
  4. Widget? tabletChild,
  5. Widget? desktopChild,
  6. double? width,
  7. double? height,
  8. EdgeInsetsGeometry? padding,
  9. EdgeInsetsGeometry? margin,
  10. AlignmentGeometry? alignment,
  11. Decoration? decoration,
})

Implementation

const ResponsiveContainer({
  super.key,
  this.child,
  this.mobileChild,
  this.tabletChild,
  this.desktopChild,
  this.width,
  this.height,
  this.padding,
  this.margin,
  this.alignment,
  this.decoration,
});