Hidable constructor

const Hidable({
  1. Key? key,
  2. required Widget child,
  3. required ScrollController controller,
  4. @deprecated bool wOpacity = true,
  5. bool enableOpacityAnimation = true,
  6. Size preferredWidgetSize = const Size.fromHeight(56),
  7. HidableVisibility? visibility,
  8. double deltaFactor = 0.06,
})

Implementation

const Hidable({
  Key? key,
  required this.child,
  required this.controller,
  @deprecated this.wOpacity = true,
  this.enableOpacityAnimation = true,
  this.preferredWidgetSize = const Size.fromHeight(56),
  this.visibility,
  this.deltaFactor = 0.06,
}) : super(key: key);