ResponsiveAppBar constructor

const ResponsiveAppBar({
  1. Key? key,
  2. List<AppBarAction>? actions,
  3. double? actionSpace,
  4. bool automaticallyImplyLeading = true,
  5. Color? backgroundColor,
  6. bool? centerTitle,
  7. double? elevation,
  8. bool fitTitle = true,
  9. Widget? leading,
  10. double? maxWidth,
  11. ScreenChangePoints? screenChangePoints,
  12. Widget? title,
  13. TextStyle? titleTextStyle,
  14. double? toolbarHeight,
  15. TextStyle? toolbarTextStyle,
})

Define a ResponsiveAppBar widget.

Implementation

const ResponsiveAppBar({
  Key? key,
  this.actions,
  this.actionSpace,
  this.automaticallyImplyLeading = true,
  this.backgroundColor,
  this.centerTitle,
  this.elevation,
  this.fitTitle = true,
  this.leading,
  this.maxWidth,
  this.screenChangePoints,
  this.title,
  this.titleTextStyle,
  this.toolbarHeight,
  this.toolbarTextStyle,
}) : super(key: key);