TransparentAppBar constructor

const TransparentAppBar({
  1. Key? key,
  2. String? title,
  3. Widget? titleWidget,
  4. List<Widget>? actions,
  5. Widget? leading,
  6. bool showBackButton = true,
  7. IconData backIcon = Icons.arrow_back_ios,
  8. Color? backIconColor,
  9. VoidCallback? onBack,
  10. double elevation = 0,
  11. SystemUiOverlayStyle? systemOverlayStyle = SystemUiOverlayStyle.light,
  12. String? semanticLabel,
  13. bool? enableSecurity,
})

Implementation

const TransparentAppBar({
  super.key,
  super.title,
  super.titleWidget,
  super.actions,
  super.leading,
  super.showBackButton = true,
  super.backIcon,
  super.backIconColor,
  super.onBack,
  super.elevation = 0,
  super.systemOverlayStyle = SystemUiOverlayStyle.light,
  super.semanticLabel,
  super.enableSecurity,
}) : super(transparent: true);