Revert the "Revert to material 2 from 3" because of the broken changes (#1625)

* Revert "Fix build error"

This reverts commit 90738e1ece.

* Revert "Prepare to release 9.1.0"

This reverts commit c3d57b87ec.

* Revert "Revert from material 3 to material 2"

This reverts commit 07b8f40491.

* Revert "Restore old feel and look (#1621)"

This reverts commit e820c5b29d.

---------

Co-authored-by: Ellet <ellet@freshplatform.net>
pull/1626/head^2
Ellet Hnewa 1 year ago committed by GitHub
parent 49343488de
commit 05a8d9b4f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      CHANGELOG.md
  2. 2
      example/lib/presentation/quill/my_quill_toolbar.dart
  3. 3
      flutter_quill_extensions/CHANGELOG.md
  4. 1
      flutter_quill_extensions/lib/embeds/formula/toolbar/formula_button.dart
  5. 1
      flutter_quill_extensions/lib/embeds/image/toolbar/image_button.dart
  6. 2
      flutter_quill_extensions/lib/embeds/others/camera_button/camera_button.dart
  7. 1
      flutter_quill_extensions/lib/embeds/video/toolbar/video_button.dart
  8. 2
      flutter_quill_extensions/pubspec.yaml
  9. 3
      flutter_quill_test/CHANGELOG.md
  10. 2
      flutter_quill_test/pubspec.yaml
  11. 1
      lib/flutter_quill.dart
  12. 17
      lib/src/models/config/toolbar/buttons/font_family_configurations.dart
  13. 25
      lib/src/models/config/toolbar/buttons/font_size_configurations.dart
  14. 82
      lib/src/models/config/toolbar/buttons/select_header_style_dropdown_button_configurations.dart
  15. 1
      lib/src/widgets/toolbar/base_toolbar.dart
  16. 281
      lib/src/widgets/toolbar/buttons/alignment/select_alignment_button_original.dart
  17. 10
      lib/src/widgets/toolbar/buttons/clear_format_button.dart
  18. 16
      lib/src/widgets/toolbar/buttons/color/color_button.dart
  19. 1
      lib/src/widgets/toolbar/buttons/custom_button_button.dart
  20. 13
      lib/src/widgets/toolbar/buttons/font_family_button.dart
  21. 20
      lib/src/widgets/toolbar/buttons/font_size_button.dart
  22. 349
      lib/src/widgets/toolbar/buttons/hearder_style/select_header_style_dropdown_button.dart
  23. 1
      lib/src/widgets/toolbar/buttons/history_button.dart
  24. 10
      lib/src/widgets/toolbar/buttons/indent_button.dart
  25. 10
      lib/src/widgets/toolbar/buttons/link_style2_button.dart
  26. 1
      lib/src/widgets/toolbar/buttons/link_style_button.dart
  27. 56
      lib/src/widgets/toolbar/buttons/quill_icon_button.dart
  28. 1
      lib/src/widgets/toolbar/buttons/search/search_button.dart
  29. 17
      lib/src/widgets/toolbar/buttons/toggle_style_button.dart
  30. 2
      pubspec.yaml
  31. 3
      quill_html_converter/CHANGELOG.md
  32. 2
      quill_html_converter/pubspec.yaml
  33. 2
      version.dart

@ -2,9 +2,6 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## 9.1.0
* Because most of the users still uses material 2, we have to revert back to old buttons of `7.0.0`, take a look at [https://github.com/singerdmx/flutter-quill/pull/1621/](https://github.com/singerdmx/flutter-quill/pull/1621/)
## 9.0.4 ## 9.0.4
* Feature: [#1611](https://github.com/singerdmx/flutter-quill/issues/1611) * Feature: [#1611](https://github.com/singerdmx/flutter-quill/issues/1611)
* Export missing widgets * Export missing widgets

@ -210,7 +210,7 @@ class MyQuillToolbar extends StatelessWidget {
), ),
selectHeaderStyleDropdownButton: selectHeaderStyleDropdownButton:
const QuillToolbarSelectHeaderStyleDropdownButtonOptions( const QuillToolbarSelectHeaderStyleDropdownButtonOptions(
style: TextStyle( textStyle: TextStyle(
fontSize: 20, fontSize: 20,
), ),
iconTheme: QuillIconTheme( iconTheme: QuillIconTheme(

@ -2,9 +2,6 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## 9.1.0
* Because most of the users still uses material 2, we have to revert back to old buttons of `7.0.0`, take a look at [https://github.com/singerdmx/flutter-quill/pull/1621/](https://github.com/singerdmx/flutter-quill/pull/1621/)
## 9.0.4 ## 9.0.4
* Feature: [#1611](https://github.com/singerdmx/flutter-quill/issues/1611) * Feature: [#1611](https://github.com/singerdmx/flutter-quill/issues/1611)
* Export missing widgets * Export missing widgets

@ -94,6 +94,7 @@ class QuillToolbarFormulaButton extends StatelessWidget {
icon: Icon(iconData, size: iconSize * iconButtonFactor, color: iconColor), icon: Icon(iconData, size: iconSize * iconButtonFactor, color: iconColor),
tooltip: tooltip, tooltip: tooltip,
onPressed: () => _sharedOnPressed(context), onPressed: () => _sharedOnPressed(context),
isFilled: false,
); );
} }

@ -109,6 +109,7 @@ class QuillToolbarImageButton extends StatelessWidget {
color: iconColor, color: iconColor,
), ),
tooltip: tooltip, tooltip: tooltip,
isFilled: false,
onPressed: () => _sharedOnPressed(context), onPressed: () => _sharedOnPressed(context),
); );
} }

@ -108,6 +108,8 @@ class QuillToolbarCameraButton extends StatelessWidget {
return QuillToolbarIconButton( return QuillToolbarIconButton(
icon: Icon(iconData, size: iconButtonFactor * iconSize, color: iconColor), icon: Icon(iconData, size: iconButtonFactor * iconSize, color: iconColor),
tooltip: tooltip, tooltip: tooltip,
isFilled: false,
// isDesktop(supportWeb: false) ? null :
onPressed: () => _sharedOnPressed(context), onPressed: () => _sharedOnPressed(context),
); );
} }

@ -108,6 +108,7 @@ class QuillToolbarVideoButton extends StatelessWidget {
return QuillToolbarIconButton( return QuillToolbarIconButton(
icon: Icon(iconData, size: iconSize * iconButtonFactor, color: iconColor), icon: Icon(iconData, size: iconSize * iconButtonFactor, color: iconColor),
tooltip: tooltip, tooltip: tooltip,
isFilled: false,
onPressed: () => _sharedOnPressed(context), onPressed: () => _sharedOnPressed(context),
); );
} }

@ -1,6 +1,6 @@
name: flutter_quill_extensions name: flutter_quill_extensions
description: Embed extensions for flutter_quill including image, video, formula and etc. description: Embed extensions for flutter_quill including image, video, formula and etc.
version: 9.1.0 version: 9.0.4
homepage: https://github.com/singerdmx/flutter-quill/tree/master/flutter_quill_extensions/ homepage: https://github.com/singerdmx/flutter-quill/tree/master/flutter_quill_extensions/
repository: https://github.com/singerdmx/flutter-quill/tree/master/flutter_quill_extensions/ repository: https://github.com/singerdmx/flutter-quill/tree/master/flutter_quill_extensions/
issue_tracker: https://github.com/singerdmx/flutter-quill/issues/ issue_tracker: https://github.com/singerdmx/flutter-quill/issues/

@ -2,9 +2,6 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## 9.1.0
* Because most of the users still uses material 2, we have to revert back to old buttons of `7.0.0`, take a look at [https://github.com/singerdmx/flutter-quill/pull/1621/](https://github.com/singerdmx/flutter-quill/pull/1621/)
## 9.0.4 ## 9.0.4
* Feature: [#1611](https://github.com/singerdmx/flutter-quill/issues/1611) * Feature: [#1611](https://github.com/singerdmx/flutter-quill/issues/1611)
* Export missing widgets * Export missing widgets

@ -1,6 +1,6 @@
name: flutter_quill_test name: flutter_quill_test
description: Test utilities for flutter_quill which includes methods to simplify interacting with the editor in test cases. description: Test utilities for flutter_quill which includes methods to simplify interacting with the editor in test cases.
version: 9.1.0 version: 9.0.4
homepage: https://github.com/singerdmx/flutter-quill/tree/master/flutter_quill_test/ homepage: https://github.com/singerdmx/flutter-quill/tree/master/flutter_quill_test/
repository: https://github.com/singerdmx/flutter-quill/tree/master/flutter_quill_test/ repository: https://github.com/singerdmx/flutter-quill/tree/master/flutter_quill_test/
issue_tracker: https://github.com/singerdmx/flutter-quill/issues/ issue_tracker: https://github.com/singerdmx/flutter-quill/issues/

@ -33,6 +33,7 @@ export 'src/widgets/raw_editor/raw_editor.dart';
export 'src/widgets/raw_editor/raw_editor_state.dart'; export 'src/widgets/raw_editor/raw_editor_state.dart';
export 'src/widgets/style_widgets/style_widgets.dart'; export 'src/widgets/style_widgets/style_widgets.dart';
export 'src/widgets/toolbar/base_toolbar.dart'; export 'src/widgets/toolbar/base_toolbar.dart';
export 'src/widgets/toolbar/buttons/alignment/select_alignment_button.dart';
export 'src/widgets/toolbar/buttons/hearder_style/select_header_style_dropdown_button.dart'; export 'src/widgets/toolbar/buttons/hearder_style/select_header_style_dropdown_button.dart';
export 'src/widgets/toolbar/simple_toolbar.dart'; export 'src/widgets/toolbar/simple_toolbar.dart';
export 'src/widgets/utils/provider.dart'; export 'src/widgets/utils/provider.dart';

@ -49,18 +49,11 @@ class QuillToolbarFontFamilyButtonOptions extends QuillToolbarBaseButtonOptions<
this.itemPadding, this.itemPadding,
this.defaultItemColor = Colors.red, this.defaultItemColor = Colors.red,
this.renderFontFamilies = true, this.renderFontFamilies = true,
this.highlightElevation = 1,
this.hoverElevation = 1,
this.fillColor,
this.iconSize, this.iconSize,
this.iconButtonFactor, this.iconButtonFactor,
}); });
final Color? fillColor; /// By default it will be [fontFamilyValues] from [QuillSimpleToolbarConfigurations]
final double hoverElevation;
final double highlightElevation;
/// By default it will be [fontFamilyValues] from [QuillToolbarConfigurations]
/// You can override this if you want /// You can override this if you want
final Map<String, String>? rawItemsMap; final Map<String, String>? rawItemsMap;
final ValueChanged<String>? onSelected; final ValueChanged<String>? onSelected;
@ -82,9 +75,6 @@ class QuillToolbarFontFamilyButtonOptions extends QuillToolbarBaseButtonOptions<
final double? iconButtonFactor; final double? iconButtonFactor;
QuillToolbarFontFamilyButtonOptions copyWith({ QuillToolbarFontFamilyButtonOptions copyWith({
Color? fillColor,
double? hoverElevation,
double? highlightElevation,
List<PopupMenuEntry<String>>? items, List<PopupMenuEntry<String>>? items,
Map<String, String>? rawItemsMap, Map<String, String>? rawItemsMap,
ValueChanged<String>? onSelected, ValueChanged<String>? onSelected,
@ -101,8 +91,6 @@ class QuillToolbarFontFamilyButtonOptions extends QuillToolbarBaseButtonOptions<
Color? defaultItemColor, Color? defaultItemColor,
double? iconSize, double? iconSize,
double? iconButtonFactor, double? iconButtonFactor,
// Add properties to override inherited properties
QuillController? controller,
IconData? iconData, IconData? iconData,
VoidCallback? afterButtonPressed, VoidCallback? afterButtonPressed,
String? tooltip, String? tooltip,
@ -129,9 +117,6 @@ class QuillToolbarFontFamilyButtonOptions extends QuillToolbarBaseButtonOptions<
defaultItemColor: defaultItemColor ?? this.defaultItemColor, defaultItemColor: defaultItemColor ?? this.defaultItemColor,
iconSize: iconSize ?? this.iconSize, iconSize: iconSize ?? this.iconSize,
iconButtonFactor: iconButtonFactor ?? this.iconButtonFactor, iconButtonFactor: iconButtonFactor ?? this.iconButtonFactor,
fillColor: fillColor ?? this.fillColor,
hoverElevation: hoverElevation ?? this.hoverElevation,
highlightElevation: highlightElevation ?? this.highlightElevation,
); );
} }
} }

@ -2,9 +2,15 @@ import 'dart:ui';
import 'package:flutter/foundation.dart' show immutable; import 'package:flutter/foundation.dart' show immutable;
import 'package:flutter/material.dart' import 'package:flutter/material.dart'
show Colors, PopupMenuEntry, ValueChanged; show ButtonStyle, Colors, PopupMenuEntry, ValueChanged;
import 'package:flutter/widgets.dart' import 'package:flutter/widgets.dart'
show Color, EdgeInsets, EdgeInsetsGeometry, TextOverflow, TextStyle; show
Color,
EdgeInsets,
EdgeInsetsGeometry,
OutlinedBorder,
TextOverflow,
TextStyle;
import '../../../documents/attribute.dart'; import '../../../documents/attribute.dart';
import '../../quill_configurations.dart'; import '../../quill_configurations.dart';
@ -29,9 +35,6 @@ class QuillToolbarFontSizeButtonOptions extends QuillToolbarBaseButtonOptions<
const QuillToolbarFontSizeButtonOptions({ const QuillToolbarFontSizeButtonOptions({
this.iconSize, this.iconSize,
this.iconButtonFactor, this.iconButtonFactor,
this.fillColor,
this.hoverElevation = 1,
this.highlightElevation = 1,
this.rawItemsMap, this.rawItemsMap,
this.onSelected, this.onSelected,
this.attribute = Attribute.size, this.attribute = Attribute.size,
@ -46,15 +49,15 @@ class QuillToolbarFontSizeButtonOptions extends QuillToolbarBaseButtonOptions<
this.itemPadding, this.itemPadding,
this.defaultItemColor = Colors.red, this.defaultItemColor = Colors.red,
super.childBuilder, super.childBuilder,
this.shape,
}); });
final double? iconSize; final double? iconSize;
final double? iconButtonFactor; final double? iconButtonFactor;
final Color? fillColor;
final double hoverElevation;
final double highlightElevation;
/// By default it will be [fontSizesValues] from [QuillToolbarConfigurations] final ButtonStyle? shape;
/// By default it will be [fontSizesValues] from [QuillSimpleToolbarConfigurations]
/// You can override this if you want /// You can override this if you want
final Map<String, String>? rawItemsMap; final Map<String, String>? rawItemsMap;
final ValueChanged<String>? onSelected; final ValueChanged<String>? onSelected;
@ -88,13 +91,11 @@ class QuillToolbarFontSizeButtonOptions extends QuillToolbarBaseButtonOptions<
Color? defaultItemColor, Color? defaultItemColor,
VoidCallback? afterButtonPressed, VoidCallback? afterButtonPressed,
String? tooltip, String? tooltip,
OutlinedBorder? shape,
}) { }) {
return QuillToolbarFontSizeButtonOptions( return QuillToolbarFontSizeButtonOptions(
iconSize: iconSize ?? this.iconSize, iconSize: iconSize ?? this.iconSize,
iconButtonFactor: iconButtonFactor ?? this.iconButtonFactor, iconButtonFactor: iconButtonFactor ?? this.iconButtonFactor,
fillColor: fillColor ?? this.fillColor,
hoverElevation: hoverElevation ?? this.hoverElevation,
highlightElevation: highlightElevation ?? this.highlightElevation,
rawItemsMap: rawItemsMap ?? this.rawItemsMap, rawItemsMap: rawItemsMap ?? this.rawItemsMap,
onSelected: onSelected ?? this.onSelected, onSelected: onSelected ?? this.onSelected,
attribute: attribute ?? this.attribute, attribute: attribute ?? this.attribute,

@ -1,9 +1,9 @@
import 'package:flutter/material.dart'; import 'package:flutter/widgets.dart'
show IconData, TextStyle, ValueChanged, VoidCallback;
import '../../../../widgets/quill/quill_controller.dart'; import '../../../../widgets/toolbar/base_toolbar.dart';
import '../../../documents/attribute.dart'; import '../../../documents/attribute.dart';
import '../../../themes/quill_icon_theme.dart'; import '../../../themes/quill_icon_theme.dart';
import '../../quill_configurations.dart';
class QuillToolbarSelectHeaderStyleDropdownButtonExtraOptions class QuillToolbarSelectHeaderStyleDropdownButtonExtraOptions
extends QuillToolbarBaseButtonExtraOptions { extends QuillToolbarBaseButtonExtraOptions {
@ -21,68 +21,46 @@ class QuillToolbarSelectHeaderStyleDropdownButtonOptions
QuillToolbarSelectHeaderStyleDropdownButtonOptions, QuillToolbarSelectHeaderStyleDropdownButtonOptions,
QuillToolbarSelectHeaderStyleDropdownButtonExtraOptions> { QuillToolbarSelectHeaderStyleDropdownButtonExtraOptions> {
const QuillToolbarSelectHeaderStyleDropdownButtonOptions({ const QuillToolbarSelectHeaderStyleDropdownButtonOptions({
super.iconData,
super.afterButtonPressed, super.afterButtonPressed,
super.tooltip,
super.iconTheme,
super.childBuilder, super.childBuilder,
super.iconTheme,
super.tooltip,
this.iconSize, this.iconSize,
this.iconButtonFactor, this.iconButtonFactor,
this.fillColor, this.textStyle,
this.hoverElevation = 0, super.iconData,
this.highlightElevation = 0,
this.onSelected,
this.attributes, this.attributes,
this.padding,
this.style,
this.width,
this.labelOverflow = TextOverflow.visible,
this.itemHeight,
this.itemPadding,
this.defaultItemColor,
this.renderItemTextStyle = false,
}); });
/// By default we will the toolbar axis from [QuillSimpleToolbarConfigurations]
final double? iconSize; final double? iconSize;
final double? iconButtonFactor; final double? iconButtonFactor;
final Color? fillColor; final TextStyle? textStyle;
final double hoverElevation;
final double highlightElevation; /// Header attributes, defaults to:
final ValueChanged<String>? onSelected; /// ```dart
final List<Attribute>? attributes; /// [
final EdgeInsetsGeometry? padding; /// Attribute.h1,
final TextStyle? style; /// Attribute.h2,
final double? width; /// Attribute.h3,
final TextOverflow labelOverflow; /// Attribute.h4,
final double? itemHeight; /// Attribute.h5,
final EdgeInsets? itemPadding; /// Attribute.h6,
final Color? defaultItemColor; /// Attribute.header,
final bool renderItemTextStyle; /// ]
/// ```
final List<Attribute<int>>? attributes;
QuillToolbarSelectHeaderStyleDropdownButtonOptions copyWith({ QuillToolbarSelectHeaderStyleDropdownButtonOptions copyWith({
Color? fillColor,
double? hoverElevation,
double? highlightElevation,
List<PopupMenuEntry<String>>? items,
ValueChanged<String>? onSelected, ValueChanged<String>? onSelected,
List<Attribute>? attributes, List<Attribute<int>>? attributes,
EdgeInsetsGeometry? padding,
TextStyle? style, TextStyle? style,
double? width,
TextOverflow? labelOverflow,
bool? renderFontFamilies,
bool? overrideTooltipByFontFamily,
double? itemHeight,
EdgeInsets? itemPadding,
Color? defaultItemColor,
double? iconSize, double? iconSize,
double? iconButtonFactor, double? iconButtonFactor,
QuillController? controller,
IconData? iconData, IconData? iconData,
VoidCallback? afterButtonPressed, VoidCallback? afterButtonPressed,
String? tooltip, String? tooltip,
QuillIconTheme? iconTheme, QuillIconTheme? iconTheme,
bool? renderItemTextStyle,
}) { }) {
return QuillToolbarSelectHeaderStyleDropdownButtonOptions( return QuillToolbarSelectHeaderStyleDropdownButtonOptions(
attributes: attributes ?? this.attributes, attributes: attributes ?? this.attributes,
@ -90,20 +68,8 @@ class QuillToolbarSelectHeaderStyleDropdownButtonOptions
afterButtonPressed: afterButtonPressed ?? this.afterButtonPressed, afterButtonPressed: afterButtonPressed ?? this.afterButtonPressed,
tooltip: tooltip ?? this.tooltip, tooltip: tooltip ?? this.tooltip,
iconTheme: iconTheme ?? this.iconTheme, iconTheme: iconTheme ?? this.iconTheme,
onSelected: onSelected ?? this.onSelected,
padding: padding ?? this.padding,
style: style ?? this.style,
width: width ?? this.width,
labelOverflow: labelOverflow ?? this.labelOverflow,
itemHeight: itemHeight ?? this.itemHeight,
itemPadding: itemPadding ?? this.itemPadding,
defaultItemColor: defaultItemColor ?? this.defaultItemColor,
iconSize: iconSize ?? this.iconSize, iconSize: iconSize ?? this.iconSize,
iconButtonFactor: iconButtonFactor ?? this.iconButtonFactor, iconButtonFactor: iconButtonFactor ?? this.iconButtonFactor,
fillColor: fillColor ?? this.fillColor,
hoverElevation: hoverElevation ?? this.hoverElevation,
highlightElevation: highlightElevation ?? this.highlightElevation,
renderItemTextStyle: renderItemTextStyle ?? this.renderItemTextStyle,
); );
} }
} }

@ -9,7 +9,6 @@ import 'simple_toolbar.dart';
export '../../models/config/toolbar/base_button_configurations.dart'; export '../../models/config/toolbar/base_button_configurations.dart';
export '../../models/config/toolbar/simple_toolbar_configurations.dart'; export '../../models/config/toolbar/simple_toolbar_configurations.dart';
export 'buttons/alignment/select_alignment_button_original.dart';
export 'buttons/clear_format_button.dart'; export 'buttons/clear_format_button.dart';
export 'buttons/color/color_button.dart'; export 'buttons/color/color_button.dart';
export 'buttons/custom_button_button.dart'; export 'buttons/custom_button_button.dart';

@ -1,281 +0,0 @@
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import '../../../../../translations.dart';
import '../../../../extensions/quill_configurations_ext.dart';
import '../../../../models/config/quill_configurations.dart';
import '../../../../models/documents/attribute.dart';
import '../../../../models/documents/style.dart';
import '../../../../models/themes/quill_icon_theme.dart';
import '../../../../utils/widgets.dart';
import '../../../quill/quill_controller.dart';
class QuillToolbarSelectAlignmentButton extends StatefulWidget {
const QuillToolbarSelectAlignmentButton({
required this.controller,
this.options = const QuillToolbarSelectAlignmentButtonOptions(),
this.showLeftAlignment = true,
this.showCenterAlignment = true,
this.showRightAlignment = true,
this.showJustifyAlignment = true,
this.padding,
super.key,
});
final QuillController controller;
final QuillToolbarSelectAlignmentButtonOptions options;
final bool showLeftAlignment;
final bool showCenterAlignment;
final bool showRightAlignment;
final bool showJustifyAlignment;
final EdgeInsetsGeometry? padding;
@override
QuillToolbarSelectAlignmentButtonState createState() =>
QuillToolbarSelectAlignmentButtonState();
}
class QuillToolbarSelectAlignmentButtonState
extends State<QuillToolbarSelectAlignmentButton> {
Attribute? _value;
Style get _selectionStyle => controller.getSelectionStyle();
@override
void initState() {
super.initState();
setState(() {
_value = _selectionStyle.attributes[Attribute.align.key] ??
Attribute.leftAlignment;
});
controller.addListener(_didChangeEditingValue);
}
QuillToolbarSelectAlignmentButtonOptions get options {
return widget.options;
}
QuillController get controller {
return widget.controller;
}
double get _iconSize {
final baseFontSize = baseButtonExtraOptions.globalIconSize;
final iconSize = options.iconSize;
return iconSize ?? baseFontSize;
}
double get _iconButtonFactor {
final baseIconFactor = baseButtonExtraOptions.globalIconButtonFactor;
final iconButtonFactor = options.iconButtonFactor;
return iconButtonFactor ?? baseIconFactor;
}
VoidCallback? get _afterButtonPressed {
return options.afterButtonPressed ??
baseButtonExtraOptions.afterButtonPressed;
}
QuillIconTheme? get _iconTheme {
return options.iconTheme ?? baseButtonExtraOptions.iconTheme;
}
QuillToolbarBaseButtonOptions get baseButtonExtraOptions {
return context.requireQuillToolbarBaseButtonOptions;
}
QuillSelectAlignmentValues<IconData> get _iconsData {
final iconsData = options.iconsData;
if (iconsData != null) {
return iconsData;
}
final baseIconData = baseButtonExtraOptions.iconData;
if (baseIconData != null) {
return QuillSelectAlignmentValues(
leftAlignment: baseIconData,
centerAlignment: baseIconData,
rightAlignment: baseIconData,
justifyAlignment: baseIconData,
);
}
return const QuillSelectAlignmentValues(
leftAlignment: Icons.format_align_left,
centerAlignment: Icons.format_align_center,
rightAlignment: Icons.format_align_right,
justifyAlignment: Icons.format_align_justify,
);
}
QuillSelectAlignmentValues<String> get _tooltips {
final tooltips = options.tooltips;
if (tooltips != null) {
return tooltips;
}
final baseToolTip = baseButtonExtraOptions.tooltip;
if (baseToolTip != null) {
return QuillSelectAlignmentValues(
leftAlignment: baseToolTip,
centerAlignment: baseToolTip,
rightAlignment: baseToolTip,
justifyAlignment: baseToolTip,
);
}
return QuillSelectAlignmentValues(
leftAlignment: context.loc.alignLeft,
centerAlignment: context.loc.alignCenter,
rightAlignment: context.loc.alignRight,
justifyAlignment: context.loc.justifyWinWidth,
);
}
void _didChangeEditingValue() {
setState(() {
_value = _selectionStyle.attributes[Attribute.align.key] ??
Attribute.leftAlignment;
});
}
@override
void didUpdateWidget(covariant QuillToolbarSelectAlignmentButton oldWidget) {
super.didUpdateWidget(oldWidget);
if (oldWidget.controller != controller) {
oldWidget.controller.removeListener(_didChangeEditingValue);
controller.addListener(_didChangeEditingValue);
_value = _selectionStyle.attributes[Attribute.align.key] ??
Attribute.leftAlignment;
}
}
@override
void dispose() {
controller.removeListener(_didChangeEditingValue);
super.dispose();
}
@override
Widget build(BuildContext context) {
final valueToText = <Attribute, String>{
if (widget.showLeftAlignment)
Attribute.leftAlignment: Attribute.leftAlignment.value!,
if (widget.showCenterAlignment)
Attribute.centerAlignment: Attribute.centerAlignment.value!,
if (widget.showRightAlignment)
Attribute.rightAlignment: Attribute.rightAlignment.value!,
if (widget.showJustifyAlignment)
Attribute.justifyAlignment: Attribute.justifyAlignment.value!,
};
final valueAttribute = <Attribute>[
if (widget.showLeftAlignment) Attribute.leftAlignment,
if (widget.showCenterAlignment) Attribute.centerAlignment,
if (widget.showRightAlignment) Attribute.rightAlignment,
if (widget.showJustifyAlignment) Attribute.justifyAlignment
];
final valueString = <String>[
if (widget.showLeftAlignment) Attribute.leftAlignment.value!,
if (widget.showCenterAlignment) Attribute.centerAlignment.value!,
if (widget.showRightAlignment) Attribute.rightAlignment.value!,
if (widget.showJustifyAlignment) Attribute.justifyAlignment.value!,
];
// final _valueToButtons = <Attribute, ToolbarButtons>{
// if (widget.showLeftAlignment!)
// Attribute.leftAlignment: ToolbarButtons.leftAlignment,
// if (widget.showCenterAlignment!)
// Attribute.centerAlignment: ToolbarButtons.centerAlignment,
// if (widget.showRightAlignment!)
// Attribute.rightAlignment: ToolbarButtons.rightAlignment,
// if (widget.showJustifyAlignment!)
// Attribute.justifyAlignment: ToolbarButtons.justifyAlignment,
// };
final buttonCount = ((widget.showLeftAlignment) ? 1 : 0) +
((widget.showCenterAlignment) ? 1 : 0) +
((widget.showRightAlignment) ? 1 : 0) +
((widget.showJustifyAlignment) ? 1 : 0);
final childBuilder =
options.childBuilder ?? baseButtonExtraOptions.childBuilder;
void sharedOnPressed(int index) {
valueAttribute[index] == Attribute.leftAlignment
? controller.formatSelection(
Attribute.clone(Attribute.align, null),
)
: controller.formatSelection(valueAttribute[index]);
_afterButtonPressed?.call();
}
return Row(
mainAxisSize: MainAxisSize.min,
children: List.generate(buttonCount, (index) {
if (childBuilder != null) {
return childBuilder(
QuillToolbarSelectAlignmentButtonOptions(
afterButtonPressed: _afterButtonPressed,
iconSize: _iconSize,
iconButtonFactor: _iconButtonFactor,
iconTheme: _iconTheme,
tooltips: _tooltips,
iconsData: _iconsData,
),
QuillToolbarSelectAlignmentButtonExtraOptions(
context: context,
controller: controller,
onPressed: () => sharedOnPressed(index),
),
);
}
final theme = Theme.of(context);
return Padding(
padding: widget.padding ??
const EdgeInsets.symmetric(horizontal: !kIsWeb ? 1.0 : 5.0),
child: ConstrainedBox(
constraints: BoxConstraints.tightFor(
width: _iconSize * _iconButtonFactor,
height: _iconSize * _iconButtonFactor,
),
child: UtilityWidgets.maybeTooltip(
message: valueString[index] == Attribute.leftAlignment.value
? _tooltips.leftAlignment
: valueString[index] == Attribute.centerAlignment.value
? _tooltips.centerAlignment
: valueString[index] == Attribute.rightAlignment.value
? _tooltips.rightAlignment
: _tooltips.justifyAlignment,
child: RawMaterialButton(
hoverElevation: 0,
highlightElevation: 0,
elevation: 0,
visualDensity: VisualDensity.compact,
shape: RoundedRectangleBorder(
borderRadius:
BorderRadius.circular(_iconTheme?.borderRadius ?? 2)),
fillColor: valueToText[_value] == valueString[index]
? (_iconTheme?.iconSelectedFillColor ?? theme.primaryColor)
: (_iconTheme?.iconUnselectedFillColor ??
theme.canvasColor),
onPressed: () => sharedOnPressed(index),
child: Icon(
valueString[index] == Attribute.leftAlignment.value
? _iconsData.leftAlignment
: valueString[index] == Attribute.centerAlignment.value
? _iconsData.centerAlignment
: valueString[index] == Attribute.rightAlignment.value
? _iconsData.rightAlignment
: _iconsData.justifyAlignment,
size: _iconSize,
color: valueToText[_value] == valueString[index]
? (_iconTheme?.iconSelectedColor ??
theme.primaryIconTheme.color)
: (_iconTheme?.iconUnselectedColor ??
theme.iconTheme.color),
),
),
),
),
);
}),
);
}
}

@ -107,17 +107,11 @@ class QuillToolbarClearFormatButton extends StatelessWidget {
final theme = Theme.of(context); final theme = Theme.of(context);
final iconColor = iconTheme?.iconUnselectedColor ?? theme.iconTheme.color; final iconColor = iconTheme?.iconUnselectedColor ?? theme.iconTheme.color;
final iconFillColor =
iconTheme?.iconUnselectedFillColor ?? theme.canvasColor;
return QuillToolbarIconButton( return QuillToolbarIconButton(
tooltip: tooltip, tooltip: tooltip,
highlightElevation: 0, icon: Icon(iconData, size: iconSize * iconButtonFactor, color: iconColor),
hoverElevation: 0, isFilled: false,
size: iconSize * iconButtonFactor,
icon: Icon(iconData, size: iconSize, color: iconColor),
fillColor: iconFillColor,
borderRadius: iconTheme?.borderRadius ?? 2,
onPressed: _sharedOnPressed, onPressed: _sharedOnPressed,
afterPressed: afterButtonPressed, afterPressed: afterButtonPressed,
); );

@ -194,18 +194,14 @@ class QuillToolbarColorButtonState extends State<QuillToolbarColorButton> {
); );
} }
return QuillToolbarIconButton( return IconButton(
tooltip: tooltip, tooltip: tooltip,
highlightElevation: 0, iconSize: iconSize * iconButtonFactor,
hoverElevation: 0, icon: Icon(
size: iconSize * iconButtonFactor, iconData,
icon: Icon(iconData, color: widget.isBackground ? iconColorBackground : iconColor,
size: iconSize, ),
color: widget.isBackground ? iconColorBackground : iconColor),
fillColor: widget.isBackground ? fillColorBackground : fillColor,
borderRadius: iconTheme?.borderRadius ?? 2,
onPressed: _showColorPicker, onPressed: _showColorPicker,
afterPressed: afterButtonPressed,
); );
} }

@ -81,6 +81,7 @@ class QuillToolbarCustomButton extends StatelessWidget {
return QuillToolbarIconButton( return QuillToolbarIconButton(
icon: options.icon ?? const SizedBox.shrink(), icon: options.icon ?? const SizedBox.shrink(),
isFilled: false,
tooltip: tooltip, tooltip: tooltip,
onPressed: () => _onPressed(context), onPressed: () => _onPressed(context),
afterPressed: afterButtonPressed, afterPressed: afterButtonPressed,

@ -188,15 +188,6 @@ class QuillToolbarFontFamilyButtonState
final isMaterial3 = Theme.of(context).useMaterial3; final isMaterial3 = Theme.of(context).useMaterial3;
if (!isMaterial3) { if (!isMaterial3) {
return RawMaterialButton( return RawMaterialButton(
visualDensity: VisualDensity.compact,
shape: RoundedRectangleBorder(
borderRadius:
BorderRadius.circular(iconTheme?.borderRadius ?? 2),
),
fillColor: options.fillColor,
elevation: 0,
hoverElevation: options.hoverElevation,
highlightElevation: options.hoverElevation,
onPressed: _onPressed, onPressed: _onPressed,
child: _buildContent(context), child: _buildContent(context),
); );
@ -207,8 +198,8 @@ class QuillToolbarFontFamilyButtonState
style: IconButton.styleFrom( style: IconButton.styleFrom(
shape: iconTheme?.borderRadius != null shape: iconTheme?.borderRadius != null
? RoundedRectangleBorder( ? RoundedRectangleBorder(
borderRadius: borderRadius: BorderRadius.circular(
BorderRadius.circular(iconTheme?.borderRadius ?? 2), iconTheme?.borderRadius ?? -1),
) )
: null, : null,
), ),

@ -146,21 +146,9 @@ class QuillToolbarFontSizeButtonState
builder: (context) { builder: (context) {
final isMaterial3 = Theme.of(context).useMaterial3; final isMaterial3 = Theme.of(context).useMaterial3;
if (!isMaterial3) { if (!isMaterial3) {
return Tooltip( return RawMaterialButton(
message: tooltip, onPressed: _onPressed,
child: RawMaterialButton( child: _buildContent(context),
visualDensity: VisualDensity.compact,
shape: RoundedRectangleBorder(
borderRadius:
BorderRadius.circular(iconTheme?.borderRadius ?? 2),
),
fillColor: options.fillColor,
elevation: 0,
hoverElevation: options.hoverElevation,
highlightElevation: options.hoverElevation,
onPressed: _onPressed,
child: _buildContent(context),
),
); );
} }
return IconButton( return IconButton(
@ -170,7 +158,7 @@ class QuillToolbarFontSizeButtonState
shape: iconTheme?.borderRadius != null shape: iconTheme?.borderRadius != null
? RoundedRectangleBorder( ? RoundedRectangleBorder(
borderRadius: borderRadius:
BorderRadius.circular(iconTheme?.borderRadius ?? 2), BorderRadius.circular(iconTheme?.borderRadius ?? -1),
) )
: null, : null,
), ),

@ -1,15 +1,11 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import '../../../../../extensions.dart';
import '../../../../../translations.dart'; import '../../../../../translations.dart';
import '../../../../extensions/quill_configurations_ext.dart'; import '../../../../extensions/quill_configurations_ext.dart';
import '../../../../models/config/toolbar/base_button_configurations.dart';
import '../../../../models/config/toolbar/buttons/select_header_style_dropdown_button_configurations.dart';
import '../../../../models/documents/attribute.dart'; import '../../../../models/documents/attribute.dart';
import '../../../../models/documents/style.dart';
import '../../../../models/themes/quill_icon_theme.dart'; import '../../../../models/themes/quill_icon_theme.dart';
import '../../../others/default_styles.dart';
import '../../../quill/quill_controller.dart'; import '../../../quill/quill_controller.dart';
import '../../base_toolbar.dart';
class QuillToolbarSelectHeaderStyleDropdownButton extends StatefulWidget { class QuillToolbarSelectHeaderStyleDropdownButton extends StatefulWidget {
const QuillToolbarSelectHeaderStyleDropdownButton({ const QuillToolbarSelectHeaderStyleDropdownButton({
@ -18,8 +14,6 @@ class QuillToolbarSelectHeaderStyleDropdownButton extends StatefulWidget {
super.key, super.key,
}); });
/// Since we can't get the state from the instace of the widget for comparing
/// in [didUpdateWidget] then we will have to store reference here
final QuillController controller; final QuillController controller;
final QuillToolbarSelectHeaderStyleDropdownButtonOptions options; final QuillToolbarSelectHeaderStyleDropdownButtonOptions options;
@ -30,263 +24,190 @@ class QuillToolbarSelectHeaderStyleDropdownButton extends StatefulWidget {
class _QuillToolbarSelectHeaderStyleDropdownButtonState class _QuillToolbarSelectHeaderStyleDropdownButtonState
extends State<QuillToolbarSelectHeaderStyleDropdownButton> { extends State<QuillToolbarSelectHeaderStyleDropdownButton> {
Attribute? _selectedAttribute; Attribute<dynamic> _selectedItem = Attribute.header;
Style get _selectionStyle => controller.getSelectionStyle(); final _menuController = MenuController();
@override
void initState() {
super.initState();
widget.controller.addListener(_didChangeEditingValue);
}
late final _valueToText = <Attribute, String>{ @override
Attribute.h1: context.loc.heading1, void dispose() {
Attribute.h2: context.loc.heading2, widget.controller.removeListener(_didChangeEditingValue);
Attribute.h3: context.loc.heading3, super.dispose();
Attribute.h4: context.loc.heading4, }
Attribute.h5: context.loc.heading5,
Attribute.h6: context.loc.heading6,
Attribute.header: context.loc.normal,
};
Map<Attribute, TextStyle>? _headerTextStyles; @override
void didUpdateWidget(
covariant QuillToolbarSelectHeaderStyleDropdownButton oldWidget) {
super.didUpdateWidget(oldWidget);
if (oldWidget.controller == widget.controller) {
return;
}
widget.controller
..removeListener(_didChangeEditingValue)
..addListener(_didChangeEditingValue);
}
QuillToolbarSelectHeaderStyleDropdownButtonOptions get options { void _didChangeEditingValue() {
return widget.options; final newSelectedItem = _getHeaderValue();
if (newSelectedItem == _selectedItem) {
return;
}
setState(() {
_selectedItem = newSelectedItem;
});
} }
QuillController get controller { Attribute<dynamic> _getHeaderValue() {
return widget.controller; final attr = widget.controller.toolbarButtonToggler[Attribute.header.key];
if (attr != null) {
// checkbox tapping causes controller.selection to go to offset 0
widget.controller.toolbarButtonToggler.remove(Attribute.header.key);
return attr;
}
return widget.controller
.getSelectionStyle()
.attributes[Attribute.header.key] ??
Attribute.header;
}
String _label(Attribute<dynamic> value) {
final label = switch (value) {
Attribute.h1 => context.loc.heading1,
Attribute.h2 => context.loc.heading2,
Attribute.h3 => context.loc.heading3,
Attribute.h4 => context.loc.heading4,
Attribute.h5 => context.loc.heading5,
Attribute.h6 => context.loc.heading6,
Attribute.header => context.loc.normal,
Attribute<dynamic>() => throw ArgumentError(),
};
return label;
} }
double get iconSize { double get iconSize {
final baseFontSize = baseButtonExtraOptions.globalIconSize; final baseFontSize = context.quillToolbarBaseButtonOptions?.globalIconSize;
final iconSize = options.iconSize; final iconSize = widget.options.iconSize;
return iconSize ?? baseFontSize; return iconSize ?? baseFontSize ?? kDefaultIconSize;
} }
double get iconButtonFactor { double get iconButtonFactor {
final baseIconFactor = baseButtonExtraOptions.globalIconButtonFactor; final baseIconFactor =
final iconButtonFactor = options.iconButtonFactor; context.quillToolbarBaseButtonOptions?.globalIconButtonFactor;
return iconButtonFactor ?? baseIconFactor; final iconButtonFactor = widget.options.iconButtonFactor;
return iconButtonFactor ?? baseIconFactor ?? kIconButtonFactor;
} }
VoidCallback? get afterButtonPressed { QuillIconTheme? get iconTheme {
return options.afterButtonPressed ?? return widget.options.iconTheme ??
baseButtonExtraOptions.afterButtonPressed; context.quillToolbarBaseButtonOptions?.iconTheme;
} }
QuillIconTheme? get iconTheme { List<Attribute<int?>> get headerAttributes {
return options.iconTheme ?? baseButtonExtraOptions.iconTheme; return widget.options.attributes ??
[
Attribute.h1,
Attribute.h2,
Attribute.h3,
Attribute.h4,
Attribute.h5,
Attribute.h6,
Attribute.header,
];
} }
QuillToolbarBaseButtonOptions get baseButtonExtraOptions { QuillToolbarBaseButtonOptions get baseButtonExtraOptions {
return context.requireQuillToolbarBaseButtonOptions; return context.requireQuillToolbarBaseButtonOptions;
} }
String get tooltip { VoidCallback? get afterButtonPressed {
return options.tooltip ?? return widget.options.afterButtonPressed ??
baseButtonExtraOptions.tooltip ?? baseButtonExtraOptions.afterButtonPressed;
context.loc.headerStyle;
}
List<Attribute> get _attrbuites {
return options.attributes ?? _valueToText.keys.toList();
}
@override
void dispose() {
controller.removeListener(_didChangeEditingValue);
super.dispose();
}
@override
void didUpdateWidget(
covariant QuillToolbarSelectHeaderStyleDropdownButton oldWidget) {
super.didUpdateWidget(oldWidget);
if (oldWidget.controller != controller) {
oldWidget.controller.removeListener(_didChangeEditingValue);
controller.addListener(_didChangeEditingValue);
_selectedAttribute = _getHeaderValue();
}
}
@override
void didChangeDependencies() {
super.didChangeDependencies();
if (_headerTextStyles == null) {
final defaultStyles = DefaultStyles.getInstance(context);
_headerTextStyles = {
Attribute.h1: defaultStyles.h1!.style,
Attribute.h2: defaultStyles.h2!.style,
Attribute.h3: defaultStyles.h3!.style,
Attribute.h4: defaultStyles.h4!.style,
Attribute.h5: defaultStyles.h5!.style,
Attribute.h6: defaultStyles.h6!.style,
Attribute.header:
widget.options.style ?? defaultStyles.paragraph!.style,
};
}
} }
@override void _onPressed(Attribute<int?> e) {
void initState() { setState(() => _selectedItem = e);
super.initState(); widget.controller.formatSelection(_selectedItem);
controller.addListener(_didChangeEditingValue);
_selectedAttribute = _getHeaderValue();
} }
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
assert(_attrbuites.every((element) => _valueToText.keys.contains(element)));
final baseButtonConfigurations = final baseButtonConfigurations =
context.requireQuillToolbarBaseButtonOptions; context.requireQuillToolbarBaseButtonOptions;
final childBuilder = final childBuilder =
options.childBuilder ?? baseButtonConfigurations.childBuilder; widget.options.childBuilder ?? baseButtonConfigurations.childBuilder;
if (childBuilder != null) { if (childBuilder != null) {
return childBuilder( return childBuilder(
options.copyWith( widget.options.copyWith(
iconSize: iconSize, iconSize: iconSize,
iconTheme: iconTheme, iconTheme: iconTheme,
tooltip: tooltip,
afterButtonPressed: afterButtonPressed, afterButtonPressed: afterButtonPressed,
), ),
QuillToolbarSelectHeaderStyleDropdownButtonExtraOptions( QuillToolbarSelectHeaderStyleDropdownButtonExtraOptions(
currentValue: _selectedAttribute!, currentValue: _selectedItem,
controller: controller,
context: context, context: context,
onPressed: _onPressed, controller: widget.controller,
onPressed: () {
throw UnimplementedError('Not implemented yet.');
},
), ),
); );
} }
return ConstrainedBox( return MenuAnchor(
constraints: BoxConstraints.tightFor( controller: _menuController,
height: iconSize * 1.81, menuChildren: headerAttributes
width: options.width, .map(
), (e) => MenuItemButton(
child: UtilityWidgets.maybeTooltip( onPressed: () {
message: tooltip, _onPressed(e);
child: RawMaterialButton( },
visualDensity: VisualDensity.compact, child: Text(_label(e)),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(iconTheme?.borderRadius ?? 2),
),
fillColor: options.fillColor,
elevation: 0,
hoverElevation: options.hoverElevation,
highlightElevation: options.hoverElevation,
onPressed: _onPressed,
child: _buildContent(context),
),
),
);
}
void _didChangeEditingValue() {
setState(() {
_selectedAttribute = _getHeaderValue();
});
}
Attribute<dynamic> _getHeaderValue() {
final attr = controller.toolbarButtonToggler[Attribute.header.key];
if (attr != null) {
// checkbox tapping causes controller.selection to go to offset 0
controller.toolbarButtonToggler.remove(Attribute.header.key);
return attr;
}
return _selectionStyle.attributes[Attribute.header.key] ?? Attribute.header;
}
Widget _buildContent(BuildContext context) {
final theme = Theme.of(context);
final hasFinalWidth = options.width != null;
return Padding(
padding: options.padding ?? const EdgeInsets.fromLTRB(10, 0, 0, 0),
child: Row(
mainAxisSize: !hasFinalWidth ? MainAxisSize.min : MainAxisSize.max,
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
UtilityWidgets.maybeWidget(
enabled: hasFinalWidth,
wrapper: (child) => Expanded(child: child),
child: Text(
_valueToText[_selectedAttribute]!,
overflow: options.labelOverflow,
style: options.style ??
TextStyle(
fontSize: iconSize / 1.15,
color:
iconTheme?.iconUnselectedColor ?? theme.iconTheme.color,
),
), ),
),
const SizedBox(width: 3),
Icon(
Icons.arrow_drop_down,
size: iconSize / 1.15,
color: iconTheme?.iconUnselectedColor ?? theme.iconTheme.color,
) )
], .toList(),
child: Builder(
builder: (context) {
final isMaterial3 = Theme.of(context).useMaterial3;
final child = Row(
mainAxisSize: MainAxisSize.min,
children: [
Text(
_label(_selectedItem),
style: widget.options.textStyle ??
TextStyle(
fontSize: iconSize / 1.15,
),
),
Icon(
Icons.arrow_drop_down,
size: iconSize * iconButtonFactor,
),
],
);
if (!isMaterial3) {
return RawMaterialButton(
onPressed: _onDropdownButtonPressed,
child: child,
);
}
return IconButton(
onPressed: _onDropdownButtonPressed,
icon: child,
);
},
), ),
); );
} }
void _onPressed() { void _onDropdownButtonPressed() {
_showMenu(); if (_menuController.isOpen) {
options.afterButtonPressed?.call(); _menuController.close();
}
Future<void> _showMenu() async {
final popupMenuTheme = PopupMenuTheme.of(context);
final button = context.findRenderObject() as RenderBox;
final overlay = Overlay.of(context).context.findRenderObject() as RenderBox;
final position = RelativeRect.fromRect(
Rect.fromPoints(
button.localToGlobal(Offset.zero, ancestor: overlay),
button.localToGlobal(button.size.bottomLeft(Offset.zero),
ancestor: overlay),
),
Offset.zero & overlay.size,
);
final newValue = await showMenu<Attribute>(
context: context,
elevation: 4,
items: [
for (final header in _valueToText.entries)
PopupMenuItem<Attribute>(
key: ValueKey(header.value),
value: header.key,
height: options.itemHeight ?? kMinInteractiveDimension,
padding: options.itemPadding,
child: Text(
header.value,
style: TextStyle(
fontSize: options.renderItemTextStyle
? _headerStyle(header.key).fontSize ??
DefaultTextStyle.of(context).style.fontSize ??
14
: null,
color: header.key == _selectedAttribute
? options.defaultItemColor
: null,
),
),
),
],
position: position,
shape: popupMenuTheme.shape,
color: popupMenuTheme.color,
);
if (newValue == null) {
return; return;
} }
_menuController.open();
final attribute0 =
_selectedAttribute == newValue ? Attribute.header : newValue;
controller.formatSelection(attribute0);
afterButtonPressed?.call();
}
TextStyle _headerStyle(Attribute attribute) {
assert(_headerTextStyles!.containsKey(attribute));
return _headerTextStyles![attribute]!;
} }
} }

@ -105,6 +105,7 @@ class QuillToolbarHistoryButtonState extends State<QuillToolbarHistoryButton> {
? iconTheme?.iconUnselectedColor ?? theme.iconTheme.color ? iconTheme?.iconUnselectedColor ?? theme.iconTheme.color
: iconTheme?.disabledIconColor ?? theme.disabledColor, : iconTheme?.disabledIconColor ?? theme.disabledColor,
), ),
isFilled: false,
onPressed: _updateHistory, onPressed: _updateHistory,
afterPressed: afterButtonPressed, afterPressed: afterButtonPressed,
); );

@ -107,16 +107,10 @@ class QuillToolbarIndentButtonState extends State<QuillToolbarIndentButton> {
final theme = Theme.of(context); final theme = Theme.of(context);
final iconColor = iconTheme?.iconUnselectedColor ?? theme.iconTheme.color; final iconColor = iconTheme?.iconUnselectedColor ?? theme.iconTheme.color;
final iconFillColor =
iconTheme?.iconUnselectedFillColor ?? theme.canvasColor;
return QuillToolbarIconButton( return QuillToolbarIconButton(
tooltip: tooltip, tooltip: tooltip,
highlightElevation: 0, icon: Icon(iconData, size: iconSize * iconButtonFactor, color: iconColor),
hoverElevation: 0, isFilled: false,
size: iconSize * iconButtonFactor,
icon: Icon(iconData, size: iconSize, color: iconColor),
fillColor: iconFillColor,
borderRadius: iconTheme?.borderRadius ?? 2,
onPressed: _sharedOnPressed, onPressed: _sharedOnPressed,
afterPressed: afterButtonPressed, afterPressed: afterButtonPressed,
); );

@ -148,20 +148,14 @@ class _QuillToolbarLinkStyleButton2State
final isToggled = _getLinkAttributeValue() != null; final isToggled = _getLinkAttributeValue() != null;
return QuillToolbarIconButton( return QuillToolbarIconButton(
tooltip: tooltip, tooltip: tooltip,
highlightElevation: 0,
hoverElevation: 0,
size: iconSize * iconButtonFactor,
icon: Icon( icon: Icon(
iconData, iconData,
size: iconSize, size: iconSize * iconButtonFactor,
color: isToggled color: isToggled
? (iconTheme?.iconSelectedColor ?? theme.primaryIconTheme.color) ? (iconTheme?.iconSelectedColor ?? theme.primaryIconTheme.color)
: (iconTheme?.iconUnselectedColor ?? theme.iconTheme.color), : (iconTheme?.iconUnselectedColor ?? theme.iconTheme.color),
), ),
fillColor: isToggled isFilled: isToggled,
? (iconTheme?.iconSelectedFillColor ?? theme.primaryColor)
: (iconTheme?.iconUnselectedFillColor ?? theme.canvasColor),
borderRadius: iconTheme?.borderRadius ?? 2,
onPressed: _openLinkDialog, onPressed: _openLinkDialog,
afterPressed: afterButtonPressed, afterPressed: afterButtonPressed,
); );

@ -147,6 +147,7 @@ class QuillToolbarLinkStyleButtonState
? (iconTheme?.iconSelectedColor ?? theme.primaryIconTheme.color) ? (iconTheme?.iconSelectedColor ?? theme.primaryIconTheme.color)
: (iconTheme?.iconUnselectedColor ?? theme.iconTheme.color), : (iconTheme?.iconUnselectedColor ?? theme.iconTheme.color),
), ),
isFilled: isToggled,
onPressed: () => _openLinkDialog(context), onPressed: () => _openLinkDialog(context),
afterPressed: afterButtonPressed, afterPressed: afterButtonPressed,
); );

@ -1,18 +1,13 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import '../../../utils/widgets.dart';
class QuillToolbarIconButton extends StatelessWidget { class QuillToolbarIconButton extends StatelessWidget {
const QuillToolbarIconButton({ const QuillToolbarIconButton({
required this.onPressed, required this.onPressed,
required this.icon,
required this.isFilled,
this.afterPressed, this.afterPressed,
this.icon,
this.size = 40,
this.fillColor,
this.hoverElevation = 1,
this.highlightElevation = 1,
this.borderRadius = 2,
this.tooltip, this.tooltip,
this.padding,
super.key, super.key,
this.iconFilledStyle, this.iconFilledStyle,
this.iconStyle, this.iconStyle,
@ -20,39 +15,32 @@ class QuillToolbarIconButton extends StatelessWidget {
final VoidCallback? onPressed; final VoidCallback? onPressed;
final VoidCallback? afterPressed; final VoidCallback? afterPressed;
final Widget? icon; final Widget icon;
final double size;
final Color? fillColor;
final double hoverElevation;
final double highlightElevation;
final double borderRadius;
final String? tooltip; final String? tooltip;
final EdgeInsets? padding;
final bool isFilled;
final ButtonStyle? iconStyle; final ButtonStyle? iconStyle;
final ButtonStyle? iconFilledStyle; final ButtonStyle? iconFilledStyle;
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return ConstrainedBox( if (isFilled) {
constraints: BoxConstraints.tightFor(width: size, height: size), return IconButton.filled(
child: UtilityWidgets.maybeTooltip( padding: padding,
message: tooltip, onPressed: onPressed,
child: RawMaterialButton( icon: icon,
visualDensity: VisualDensity.compact, style: iconStyle,
shape: RoundedRectangleBorder( );
borderRadius: BorderRadius.circular(borderRadius), }
), return IconButton(
fillColor: fillColor, padding: padding,
elevation: 0, onPressed: () {
hoverElevation: hoverElevation, onPressed?.call();
highlightElevation: hoverElevation, afterPressed?.call();
onPressed: () { },
onPressed?.call(); icon: icon,
afterPressed?.call(); style: iconFilledStyle,
},
child: icon,
),
),
); );
} }
} }

@ -118,6 +118,7 @@ class QuillToolbarSearchButton extends StatelessWidget {
size: iconSize * iconButtonFactor, size: iconSize * iconButtonFactor,
color: iconColor, color: iconColor,
), ),
isFilled: false,
onPressed: () => _sharedOnPressed(context), onPressed: () => _sharedOnPressed(context),
afterPressed: afterButtonPressed, afterPressed: afterButtonPressed,
); );

@ -252,22 +252,11 @@ Widget defaultToggleStyleButtonBuilder(
.primaryIconTheme.color) //You can specify your own icon color .primaryIconTheme.color) //You can specify your own icon color
: (iconTheme?.iconUnselectedColor ?? theme.iconTheme.color) : (iconTheme?.iconUnselectedColor ?? theme.iconTheme.color)
: (iconTheme?.disabledIconColor ?? theme.disabledColor); : (iconTheme?.disabledIconColor ?? theme.disabledColor);
final fill = isEnabled
? isToggled == true
? (iconTheme?.iconSelectedFillColor ??
Theme.of(context).primaryColor) //Selected icon fill color
: (iconTheme?.iconUnselectedFillColor ??
theme.canvasColor) //Unselected icon fill color :
: (iconTheme?.disabledIconFillColor ??
(fillColor ?? theme.canvasColor)); //Disabled icon fill color
return QuillToolbarIconButton( return QuillToolbarIconButton(
highlightElevation: 0, icon: Icon(icon, size: iconSize * iconButtonFactor, color: iconColor),
hoverElevation: 0, isFilled: isEnabled ? isToggled == true : false,
size: iconSize * iconButtonFactor,
icon: Icon(icon, size: iconSize, color: iconColor),
fillColor: fill,
onPressed: onPressed, onPressed: onPressed,
afterPressed: afterPressed, afterPressed: afterPressed,
borderRadius: iconTheme?.borderRadius ?? 2, padding: iconTheme?.padding,
); );
} }

@ -1,6 +1,6 @@
name: flutter_quill name: flutter_quill
description: A rich text editor built for the modern Android, iOS, web and desktop platforms. It is the WYSIWYG editor and a Quill component for Flutter. description: A rich text editor built for the modern Android, iOS, web and desktop platforms. It is the WYSIWYG editor and a Quill component for Flutter.
version: 9.1.0 version: 9.0.4
homepage: https://1o24bbs.com/c/bulletjournal/108/ homepage: https://1o24bbs.com/c/bulletjournal/108/
repository: https://github.com/singerdmx/flutter-quill/ repository: https://github.com/singerdmx/flutter-quill/
issue_tracker: https://github.com/singerdmx/flutter-quill/issues/ issue_tracker: https://github.com/singerdmx/flutter-quill/issues/

@ -2,9 +2,6 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## 9.1.0
* Because most of the users still uses material 2, we have to revert back to old buttons of `7.0.0`, take a look at [https://github.com/singerdmx/flutter-quill/pull/1621/](https://github.com/singerdmx/flutter-quill/pull/1621/)
## 9.0.4 ## 9.0.4
* Feature: [#1611](https://github.com/singerdmx/flutter-quill/issues/1611) * Feature: [#1611](https://github.com/singerdmx/flutter-quill/issues/1611)
* Export missing widgets * Export missing widgets

@ -1,6 +1,6 @@
name: quill_html_converter name: quill_html_converter
description: A extension for flutter_quill package to add support for dealing with conversion to/from html description: A extension for flutter_quill package to add support for dealing with conversion to/from html
version: 9.1.0 version: 9.0.4
homepage: https://github.com/singerdmx/flutter-quill/tree/master/quill_html_converter/ homepage: https://github.com/singerdmx/flutter-quill/tree/master/quill_html_converter/
repository: https://github.com/singerdmx/flutter-quill/tree/master/quill_html_converter/ repository: https://github.com/singerdmx/flutter-quill/tree/master/quill_html_converter/
issue_tracker: https://github.com/singerdmx/flutter-quill/issues/ issue_tracker: https://github.com/singerdmx/flutter-quill/issues/

@ -1 +1 @@
const version = '9.1.0'; const version = '9.0.4';

Loading…
Cancel
Save