NavigationAppBar constructor

const NavigationAppBar({
  1. Key? key,
  2. Widget? leading,
  3. Widget? title,
  4. Widget? actions,
  5. bool automaticallyImplyLeading = true,
  6. double height = _kDefaultAppBarHeight,
  7. Color? backgroundColor,
})

Creates a fluent-styled app bar.

Implementation

const NavigationAppBar({
  this.key,
  this.leading,
  this.title,
  this.actions,
  this.automaticallyImplyLeading = true,
  this.height = _kDefaultAppBarHeight,
  this.backgroundColor,
});