ExpandingActionButton constructor

const ExpandingActionButton({
  1. Key? key,
  2. required double directionInDegrees,
  3. required double maxDistance,
  4. required Animation<double> progress,
  5. required Widget child,
  6. VoidCallback? onTap,
})

Creates an expanding action button.

Implementation

const ExpandingActionButton({
  super.key,
  required this.directionInDegrees,
  required this.maxDistance,
  required this.progress,
  required this.child,
  this.onTap,
});