|
|
@ -30,6 +30,7 @@ class QuillToolbarFontSizeButtonOptions extends QuillToolbarBaseButtonOptions< |
|
|
|
QuillToolbarFontSizeButtonOptions, QuillToolbarFontSizeButtonExtraOptions> { |
|
|
|
QuillToolbarFontSizeButtonOptions, QuillToolbarFontSizeButtonExtraOptions> { |
|
|
|
const QuillToolbarFontSizeButtonOptions({ |
|
|
|
const QuillToolbarFontSizeButtonOptions({ |
|
|
|
this.iconSize, |
|
|
|
this.iconSize, |
|
|
|
|
|
|
|
this.iconButtonFactor, |
|
|
|
this.fillColor, |
|
|
|
this.fillColor, |
|
|
|
this.hoverElevation = 1, |
|
|
|
this.hoverElevation = 1, |
|
|
|
this.highlightElevation = 1, |
|
|
|
this.highlightElevation = 1, |
|
|
@ -53,6 +54,7 @@ class QuillToolbarFontSizeButtonOptions extends QuillToolbarBaseButtonOptions< |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
final double? iconSize; |
|
|
|
final double? iconSize; |
|
|
|
|
|
|
|
final double? iconButtonFactor; |
|
|
|
final Color? fillColor; |
|
|
|
final Color? fillColor; |
|
|
|
final double hoverElevation; |
|
|
|
final double hoverElevation; |
|
|
|
final double highlightElevation; |
|
|
|
final double highlightElevation; |
|
|
@ -75,6 +77,7 @@ class QuillToolbarFontSizeButtonOptions extends QuillToolbarBaseButtonOptions< |
|
|
|
|
|
|
|
|
|
|
|
QuillToolbarFontSizeButtonOptions copyWith({ |
|
|
|
QuillToolbarFontSizeButtonOptions copyWith({ |
|
|
|
double? iconSize, |
|
|
|
double? iconSize, |
|
|
|
|
|
|
|
double? iconButtonFactor, |
|
|
|
Color? fillColor, |
|
|
|
Color? fillColor, |
|
|
|
double? hoverElevation, |
|
|
|
double? hoverElevation, |
|
|
|
double? highlightElevation, |
|
|
|
double? highlightElevation, |
|
|
@ -97,6 +100,7 @@ class QuillToolbarFontSizeButtonOptions extends QuillToolbarBaseButtonOptions< |
|
|
|
}) { |
|
|
|
}) { |
|
|
|
return QuillToolbarFontSizeButtonOptions( |
|
|
|
return QuillToolbarFontSizeButtonOptions( |
|
|
|
iconSize: iconSize ?? this.iconSize, |
|
|
|
iconSize: iconSize ?? this.iconSize, |
|
|
|
|
|
|
|
iconButtonFactor: iconButtonFactor ?? this.iconButtonFactor, |
|
|
|
fillColor: fillColor ?? this.fillColor, |
|
|
|
fillColor: fillColor ?? this.fillColor, |
|
|
|
hoverElevation: hoverElevation ?? this.hoverElevation, |
|
|
|
hoverElevation: hoverElevation ?? this.hoverElevation, |
|
|
|
highlightElevation: highlightElevation ?? this.highlightElevation, |
|
|
|
highlightElevation: highlightElevation ?? this.highlightElevation, |
|
|
|