|
|
@ -156,7 +156,9 @@ class QuillToolbarFontSizeButtonState |
|
|
|
onPressed: _onPressed, |
|
|
|
onPressed: _onPressed, |
|
|
|
icon: _buildContent(context), |
|
|
|
icon: _buildContent(context), |
|
|
|
) |
|
|
|
) |
|
|
|
: RawMaterialButton( |
|
|
|
: Tooltip( |
|
|
|
|
|
|
|
message: tooltip, |
|
|
|
|
|
|
|
child: RawMaterialButton( |
|
|
|
visualDensity: VisualDensity.compact, |
|
|
|
visualDensity: VisualDensity.compact, |
|
|
|
shape: RoundedRectangleBorder(borderRadius: borderRadius), |
|
|
|
shape: RoundedRectangleBorder(borderRadius: borderRadius), |
|
|
|
elevation: 0, |
|
|
|
elevation: 0, |
|
|
@ -165,6 +167,7 @@ class QuillToolbarFontSizeButtonState |
|
|
|
onPressed: _onPressed, |
|
|
|
onPressed: _onPressed, |
|
|
|
child: _buildContent(context), |
|
|
|
child: _buildContent(context), |
|
|
|
), |
|
|
|
), |
|
|
|
|
|
|
|
), |
|
|
|
); |
|
|
|
); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|