KntAppBar constructor

KntAppBar({
  1. Key? key,
  2. String? titlePage,
  3. Widget? customTitle,
  4. Widget? leadingIcon,
  5. List<Widget>? trailingActions,
  6. Color? textColor,
  7. Color? backgroundColor,
  8. VoidCallback? onPreDismiss,
})

Implementation

KntAppBar({
  super.key,
  this.titlePage,
  this.customTitle,
  this.leadingIcon,
  this.trailingActions,
  this.textColor,
  this.backgroundColor,
  this.onPreDismiss,
});