FUIAppBar constructor

const FUIAppBar({
  1. Key? key,
  2. required String title,
  3. String? subtitle,
  4. Widget? leading,
  5. List<Widget> actions = const [],
  6. bool automaticallyImplyLeading = true,
  7. VoidCallback? onBackPressed,
  8. String? backTooltip,
})

Implementation

const FUIAppBar({
  super.key,
  required this.title,
  this.subtitle,
  this.leading,
  this.actions = const [],
  this.automaticallyImplyLeading = true,
  this.onBackPressed,
  this.backTooltip,
});