AppBarOverlay constructor

const AppBarOverlay({
  1. required PreferredSizeWidget appBar,
  2. required Widget body,
  3. Key? key,
  4. bool autoHide = false,
  5. double triggerHeight = 12,
  6. double panelOpacity = 0.92,
  7. Duration animationDuration = const Duration(milliseconds: 200),
})

Creates an app bar overlay around body.

Implementation

const AppBarOverlay({
  required this.appBar,
  required this.body,
  super.key,
  this.autoHide = false,
  this.triggerHeight = 12,
  this.panelOpacity = 0.92,
  this.animationDuration = const Duration(milliseconds: 200),
});