SafeResponsiveLayout constructor

const SafeResponsiveLayout({
  1. Key? key,
  2. required Widget child,
  3. EdgeInsets? padding,
  4. bool maintainBottomViewPadding = true,
  5. bool enableScroll = true,
  6. double? maxWidth,
  7. double? maxHeight,
  8. ScrollPhysics? physics,
})

Implementation

const SafeResponsiveLayout({
  super.key,
  required this.child,
  this.padding,
  this.maintainBottomViewPadding = true,
  this.enableScroll = true,
  this.maxWidth,
  this.maxHeight,
  this.physics,
});