AppBar constructor

const AppBar({
  1. Key? key,
  2. String? title,
  3. Color? textColor,
  4. List<Widget>? actions,
  5. bool automaticallyImplyLeading = true,
  6. Widget? leading,
  7. Color? backgroundColor,
  8. double height = 44,
  9. Widget? flexibleSpace,
  10. SystemUiOverlayStyle? systemOverlayStyle,
})

Implementation

const AppBar({
  Key? key,
  this.title,
  this.textColor,
  this.actions,
  this.automaticallyImplyLeading = true,
  this.leading,
  this.backgroundColor,
  this.height = 44,
  this.flexibleSpace,
  this.systemOverlayStyle,
}) : super(key: key);