WAppBar constructor

const WAppBar({
  1. Key? key,
  2. Widget? title,
  3. String? className,
  4. List<Widget>? actions,
  5. Widget? leading,
  6. bool automaticallyImplyLeading = true,
  7. Color? backgroundColor,
  8. Color? foregroundColor,
  9. double? elevation,
  10. List<BoxShadow>? boxShadow,
  11. double? height,
  12. EdgeInsetsGeometry? padding,
  13. bool centerTitle = true,
  14. double? titleSpacing,
  15. double? toolbarOpacity = 1.0,
  16. double? bottomOpacity = 1.0,
})

Implementation

const WAppBar({
  super.key,
  this.title,
  this.className,
  this.actions,
  this.leading,
  this.automaticallyImplyLeading = true,
  this.backgroundColor,
  this.foregroundColor,
  this.elevation,
  this.boxShadow,
  this.height,
  this.padding,
  this.centerTitle = true,
  this.titleSpacing,
  this.toolbarOpacity = 1.0,
  this.bottomOpacity = 1.0,
});