XBody constructor

const XBody({
  1. Key? key,
  2. Color? backgroundColor,
  3. double? padding,
  4. ImageProvider<Object>? backgroundImage,
  5. PreferredSizeWidget? appBar,
  6. Widget? bottomNavigationBar,
  7. Function? onwillpop,
  8. bool? dismiss = false,
  9. bool? scroll = false,
  10. MainAxisAlignment? mainAxisAlignment = MainAxisAlignment.start,
  11. CrossAxisAlignment? crossAxisAlignment = CrossAxisAlignment.center,
  12. List<Widget>? children,
  13. Widget? body,
})

Implementation

const XBody({
  super.key,
  this.backgroundColor,
  this.padding,
  this.backgroundImage,
  this.appBar,
  this.bottomNavigationBar,
  this.onwillpop,
  this.dismiss = false,
  this.scroll = false,
  this.mainAxisAlignment = MainAxisAlignment.start,
  this.crossAxisAlignment = CrossAxisAlignment.center,
  this.children,
  this.body,
});