VAppBar constructor

const VAppBar({
  1. Key? key,
  2. required Widget? title,
  3. Widget? leading,
  4. List<Widget>? actionList,
  5. PreferredSizeWidget? bottom,
  6. bool centerTitle = true,
  7. VoidCallback? backButtonAction,
  8. VAppBarStyle? style,
  9. VExt? vExt,
  10. double kToolbarHeight = 60,
})

Implementation

const VAppBar({
  Key? key,
  required this.title,
  this.leading,
  this.actionList,
  this.bottom,
  this.centerTitle = true,
  this.backButtonAction,
  this.style,
  this.vExt,
  this.kToolbarHeight = 60,
})  : preferredSize = const Size.fromHeight(60),
      super(key: key);