AdwaitaHeaderBar constructor

const AdwaitaHeaderBar({
  1. Key? key,
  2. Widget leading = const SizedBox(),
  3. Widget center = const SizedBox(),
  4. Widget trailling = const SizedBox(),
  5. VoidCallback? onMinimize,
  6. VoidCallback? onMaximize,
  7. VoidCallback? onClose,
})

Implementation

const AdwaitaHeaderBar({
  Key? key,
  this.leading = const SizedBox(),
  this.center = const SizedBox(),
  this.trailling = const SizedBox(),
  this.onMinimize,
  this.onMaximize,
  this.onClose,
}) : super(key: key);