OnScrollHideContent constructor

const OnScrollHideContent({
  1. Key? key,
  2. void onSizeChanged(
    1. double height
    )?,
  3. void onChanged(
    1. double height
    )?,
  4. required ScrollController controller,
  5. required Widget child,
  6. bool floating = true,
  7. bool forcesToHideAtEdge = true,
  8. bool hideContent = true,
  9. double? offsetToHideButton,
  10. bool onTop = true,
  11. bool opacity = false,
})

Implementation

const OnScrollHideContent({
  Key? key,
  this.onSizeChanged,
  this.onChanged,
  required this.controller,
  required this.child,
  this.floating = true,
  this.forcesToHideAtEdge = true,
  this.hideContent = true,
  this.offsetToHideButton,
  this.onTop = true,
  this.opacity = false,
}) : super(key: key);