QuillToolbarSelectAlignmentButtonOptions constructor

const QuillToolbarSelectAlignmentButtonOptions({
  1. QuillSelectAlignmentValues<IconData>? iconsData,
  2. QuillSelectAlignmentValues<String>? tooltips,
  3. double? iconSize,
  4. double? iconButtonFactor,
  5. VoidCallback? afterButtonPressed,
  6. QuillToolbarButtonOptionsChildBuilder<QuillToolbarSelectAlignmentButtonOptions, QuillToolbarBaseButtonExtraOptions>? childBuilder,
  7. QuillIconTheme? iconTheme,
  8. List<Attribute>? attributes,
  9. bool showLeftAlignment = true,
  10. bool showCenterAlignment = true,
  11. bool showRightAlignment = true,
  12. bool showJustifyAlignment = true,
})

Implementation

const QuillToolbarSelectAlignmentButtonOptions({
  this.iconsData,
  this.tooltips,
  super.iconSize,
  super.iconButtonFactor,
  super.afterButtonPressed,

  /// This will called on every select alignment button
  super.childBuilder,
  super.iconTheme,
  this.attributes,
  this.showLeftAlignment = true,
  this.showCenterAlignment = true,
  this.showRightAlignment = true,
  this.showJustifyAlignment = true,
});