MyScaffold constructor

const MyScaffold({
  1. Key? key,
  2. PreferredSizeWidget? appBar,
  3. Color? backgroundColor,
  4. String title = "",
  5. List<Widget>? children,
  6. EdgeInsetsGeometry? padding,
  7. Widget? body,
  8. Widget? bottomButton,
  9. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.start,
  10. KeyboardActionsConfig? keyboardConfig,
})

Implementation

const MyScaffold({
  Key? key,
  this.appBar,
  this.backgroundColor,
  this.title = "",
  this.children,
  this.padding,
  this.body,
  this.bottomButton,
  this.crossAxisAlignment = CrossAxisAlignment.start,
  this.keyboardConfig,
}) : super(key: key);