ScreenWrapper constructor

const ScreenWrapper({
  1. Key? key,
  2. required Widget child,
  3. EdgeInsets? padding,
  4. MainAxisAlignment? mainAxisAlignment,
  5. CrossAxisAlignment? crossAxisAlignment,
  6. PreferredSizeWidget? appBar,
  7. bool scroll = true,
})

Implementation

const ScreenWrapper({
  Key? key,
  required this.child,
  this.padding,
  this.mainAxisAlignment,
  this.crossAxisAlignment,
  this.appBar,
  this.scroll = true,
}) : super(key: key);