CustomAppBarModal constructor

CustomAppBarModal({
  1. Key? key,
  2. TextStyle? titleStyle,
  3. String title = '',
  4. Widget? titleWidget,
  5. String? subtitle,
  6. bool centerTitle = false,
  7. bool iconSwipe = false,
  8. List leftButtons = const [],
  9. List rightButtons = const [],
  10. Color? backgroundColor,
  11. Color? textColor,
  12. Map options = const {},
  13. bool showOnlyOption = false,
  14. ButtonType buttonType = ButtonType.text,
})

Implementation

CustomAppBarModal({
  super.key,
  super.titleStyle,
  super.title = '',
  super.titleWidget,
  super.subtitle,
  super.centerTitle = false,
  super.iconSwipe = false,
  super.leftButtons = const [],
  super.rightButtons = const [],
  super.backgroundColor,
  super.textColor,

  this.options = const {},
  this.showOnlyOption = false,
  this.buttonType = ButtonType.text,
});