GroupedActionButtons constructor

const GroupedActionButtons({
  1. required double distance,
  2. required List<Widget> children,
  3. required Icon openButtonIcon,
  4. required Icon closeButtonIcon,
  5. double elevation = 4,
  6. Size closeButtonSize = const Size(44, 44),
  7. Color openButtonColor = Colors.blue,
  8. Color closeButtonColor = Colors.blue,
  9. ShapeBorder openButtonShape = const CircleBorder(),
  10. ShapeBorder closeButtonShape = const CircleBorder(),
  11. bool initialOpen = false,
  12. Key? key,
})

Implementation

const GroupedActionButtons({
  required this.distance,
  required this.children,
  required this.openButtonIcon,
  required this.closeButtonIcon,
  this.elevation = 4,
  this.closeButtonSize = const Size(44, 44),
  this.openButtonColor = Colors.blue,
  this.closeButtonColor = Colors.blue,
  this.openButtonShape = const CircleBorder(),
  this.closeButtonShape = const CircleBorder(),
  this.initialOpen = false,
  super.key,
});