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. Color? foregroundColor = Colors.white,
  11. Color? titleColor = Colors.white,
  12. double elevation = 0,
  13. SystemUiOverlayStyle? systemOverlayStyle = SystemUiOverlayStyle.light,
  14. String? semanticLabel,
  15. 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.foregroundColor = Colors.white,
  super.titleColor = Colors.white,
  super.elevation = 0,
  super.systemOverlayStyle = SystemUiOverlayStyle.light,
  super.semanticLabel,
  super.enableSecurity,
}) : super(transparent: true);