SpeedDialCustom constructor

const SpeedDialCustom({
  1. Key? key,
  2. List<SpeedDialChild> children = const [],
  3. bool visible = true,
  4. Color? backgroundColor,
  5. Color? foregroundColor,
  6. Color? activeBackgroundColor,
  7. Color? activeForegroundColor,
  8. AnimatedIconData? animatedIcon,
  9. ShapeBorder shape = const StadiumBorder(),
  10. Curve curve = Curves.fastOutSlowIn,
  11. VoidCallback? onPress,
})

Implementation

const SpeedDialCustom({super.key,
  this.children = const [],
  this.visible = true,
  this.backgroundColor,
  this.foregroundColor,
  this.activeBackgroundColor,
  this.activeForegroundColor,
  this.animatedIcon,
  this.shape = const StadiumBorder(),
  this.curve = Curves.fastOutSlowIn,
  this.onPress,
});