KntToolBar constructor

const KntToolBar({
  1. Key? key,
  2. required String titlePage,
  3. Widget? leadingIcon,
  4. List<Widget>? trailingActions,
  5. Color? backgroundColor,
  6. Color? titleColor,
  7. bool includeStatusBar = true,
  8. bool needShadow = true,
})

Implementation

const KntToolBar({
  super.key,
  required this.titlePage,
  this.leadingIcon,
  this.trailingActions,
  this.backgroundColor,
  this.titleColor,
  this.includeStatusBar = true,
  this.needShadow = true,
});