VAppBar constructor

const VAppBar({
  1. Key? key,
  2. String title = '',
  3. String? appBarBackgroundColor,
  4. Widget? leadingWidget,
  5. double? leadingWidth,
  6. Function? leadingAction,
  7. String? action1Txt,
  8. SystemUiOverlayStyle? systemOverlayStyle,
  9. Widget? titleView,
  10. String? backIconColor,
  11. double backIconSize = 20,
  12. PreferredSizeWidget? bottomWidget,
  13. bool isHideBottomLine = true,
  14. double? appbarTitleFontSize,
  15. String? titleColor,
  16. Widget? actionView,
  17. bool isLeading2WillPopScope = false,
  18. String bottomLineColor = '#dcdcdc',
  19. bool isHideMineLine = true,
})

Implementation

const VAppBar({
  super.key,
  this.title = '',
  this.appBarBackgroundColor,
  this.leadingWidget,
  this.leadingWidth,
  this.leadingAction,
  this.action1Txt,
  this.systemOverlayStyle,
  this.titleView,
  this.backIconColor,
  this.backIconSize = 20,
  this.bottomWidget,
  this.isHideBottomLine = true,
  this.appbarTitleFontSize,
  this.titleColor,
  this.actionView,
  this.isLeading2WillPopScope = false,
  this.bottomLineColor = '#dcdcdc',
  this.isHideMineLine = true,
});