UpAppBar constructor

const UpAppBar({
  1. Key? key,
  2. String? title,
  3. UpStyle? style,
  4. UpColorType? colorType,
  5. List<Widget>? actions,
  6. Widget? leading,
  7. bool excludeHeaderSemantics = false,
  8. bool automaticallyImplyLeading = true,
  9. Widget? titleWidget,
  10. bool showToggleButton = false,
  11. GlobalKey<ScaffoldState>? scaffoldKey,
})

Implementation

const UpAppBar({
  Key? key,
  this.title,
  this.style,
  this.colorType,
  this.actions,
  this.leading,
  this.excludeHeaderSemantics = false,
  this.automaticallyImplyLeading = true,
  this.titleWidget,
  this.showToggleButton = false,
  this.scaffoldKey,
})  : preferredSize = const Size.fromHeight(kToolbarHeight),
      super(key: key);