SFResponsiveContainer constructor

const SFResponsiveContainer({
  1. required Widget child,
  2. double? maxWidth,
  3. EdgeInsetsGeometry? padding,
  4. EdgeInsetsGeometry? margin,
  5. BoxDecoration? decoration,
  6. bool center = true,
  7. Key? key,
})

Implementation

const SFResponsiveContainer({
  required this.child,
  this.maxWidth,
  this.padding,
  this.margin,
  this.decoration,
  this.center = true,
  super.key,
});