ZetaFAB constructor

const ZetaFAB(
  1. {String? label,
  2. ScrollController? scrollController,
  3. VoidCallback? onPressed,
  4. ZetaFabType type = ZetaFabType.primary,
  5. ZetaFabSize size = ZetaFabSize.small,
  6. ZetaWidgetBorder shape = ZetaWidgetBorder.full,
  7. IconData icon = ZetaIcons.add_round,
  8. bool initiallyExpanded = false,
  9. Key? key}
)

Constructs ZetaFAB.

Implementation

const ZetaFAB({
  this.label,
  this.scrollController,
  this.onPressed,
  this.type = ZetaFabType.primary,
  this.size = ZetaFabSize.small,
  this.shape = ZetaWidgetBorder.full,
  this.icon = ZetaIcons.add_round,
  this.initiallyExpanded = false,
  super.key,
});