ScrollingFabAnimated constructor

const ScrollingFabAnimated({
  1. Key? key,
  2. required Widget? icon,
  3. required Widget? text,
  4. required GestureTapCallback? onPress,
  5. required ScrollController? scrollController,
  6. GestureTapCallback? onLongPress,
  7. double? elevation = 5.0,
  8. double? width = 120.0,
  9. double? height = 60.0,
  10. Duration? duration = const Duration(milliseconds: 250),
  11. Curve? curve,
  12. double? limitIndicator = 10.0,
  13. Color? color,
  14. bool? animateIcon = true,
  15. bool? inverted = false,
  16. double? radius,
})

Implementation

const ScrollingFabAnimated(
    {Key? key,
    required this.icon,
    required this.text,
    required this.onPress,
    required this.scrollController,
    this.onLongPress,
    this.elevation = 5.0,
    this.width = 120.0,
    this.height = 60.0,
    this.duration = const Duration(milliseconds: 250),
    this.curve,
    this.limitIndicator = 10.0,
    this.color,
    this.animateIcon = true,
    this.inverted = false,
    this.radius})
    : super(key: key);