GAppBar constructor

const GAppBar({
  1. Key? key,
  2. required String title,
  3. bool centerTitle = false,
  4. List<Widget>? actions,
  5. Widget? leading,
  6. VoidCallback? onLeadingPressed,
  7. Color? backgroundColor,
  8. Color? foregroundColor,
})

Implementation

const GAppBar({
  super.key,
  required this.title,
  this.centerTitle = false,
  this.actions,
  this.leading,
  this.onLeadingPressed,
  this.backgroundColor,
  this.foregroundColor,
});