EWAppBar constructor

const EWAppBar({
  1. required Widget child,
  2. required bool isTitleCentered,
  3. required Size preferredSize,
  4. AppbarType appbarType = const Small(),
  5. Key? key,
  6. String title = '',
  7. Widget? leading,
  8. TextStyle? titleStyle,
  9. List<Widget>? actions,
})

Implementation

const EWAppBar({
  required super.child,
  required this.isTitleCentered,
  required super.preferredSize,
  this.appbarType = const Small(),
  super.key,
  this.title = '',
  this.leading,
  this.titleStyle,
  this.actions,
});