MaterialAppBarBehavior constructor

const MaterialAppBarBehavior({
  1. bool bouncing = false,
  2. Duration alignDuration = const Duration(milliseconds: 300),
  3. Curve alignCurve = Curves.ease,
  4. bool alignAnimation = true,
  5. bool floating = false,
  6. bool dragOnlyExpanding = false,
  7. bool alwaysScrolling = true,
})

Implementation

const MaterialAppBarBehavior({
  super.bouncing = false,
  super.alignDuration,
  super.alignCurve,
  this.alignAnimation = true,
  this.floating = false,
  this.dragOnlyExpanding = false,
  this.alwaysScrolling = true,
});