UIProAppBar.transparent constructor
const
UIProAppBar.transparent({
- Key? key,
- dynamic title,
- bool showBackButton = false,
- VoidCallback? onBackPressed,
- IconData? backIcon,
- Widget? leading,
- List<
UIProAppBarAction> ? actions, - Widget? trailing,
- Color? foregroundColor,
- bool? centerTitle,
- TextStyle? titleStyle,
- PreferredSizeWidget? bottom,
- SystemUiOverlayStyle? systemOverlayStyle,
- Widget? flexibleSpace,
- 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;