UIProAppBar.transparent constructor

const UIProAppBar.transparent({
  1. Key? key,
  2. dynamic title,
  3. bool showBackButton = false,
  4. VoidCallback? onBackPressed,
  5. IconData? backIcon,
  6. Widget? leading,
  7. List<UIProAppBarAction>? actions,
  8. Widget? trailing,
  9. Color? foregroundColor,
  10. bool? centerTitle,
  11. TextStyle? titleStyle,
  12. PreferredSizeWidget? bottom,
  13. SystemUiOverlayStyle? systemOverlayStyle,
  14. Widget? flexibleSpace,
  15. bool automaticallyImplyLeading = true,
})

Creates a transparent app bar (useful for overlays).

Implementation

const UIProAppBar.transparent({
  super.key,
  this.title,
  this.showBackButton = false,
  this.onBackPressed,
  this.backIcon,
  this.leading,
  this.actions,
  this.trailing,
  this.foregroundColor,
  this.centerTitle,
  this.titleStyle,
  this.bottom,
  this.systemOverlayStyle,
  this.flexibleSpace,
  this.automaticallyImplyLeading = true,
}) : backgroundColor = Colors.transparent,
     elevation = 0,
     isSliver = false,
     largeTitle = false;