CkAppBar constructor

const CkAppBar({
  1. Key? key,
  2. String? title,
  3. dynamic onBackPress()?,
  4. Widget? titleWidget,
  5. Widget? leading,
  6. bool hideBack = false,
  7. bool disableBack = false,
  8. CkAppBarConfig? appbarConfig,
})

Implementation

const CkAppBar({
  super.key,
  this.title,
  this.onBackPress,
  this.titleWidget,
  this.leading,
  this.hideBack = false,
  this.disableBack = false,
  this.appbarConfig,
});