-
Notifications
You must be signed in to change notification settings - Fork 845
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Improve main workflow * Fixes * Bug fixes * Edit toolbar configurations * Fix conflicts * Bug fixes
- Loading branch information
Showing
44 changed files
with
301 additions
and
170 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
import 'package:flutter/foundation.dart' show immutable; | ||
import 'package:flutter/material.dart' | ||
show Colors, PopupMenuEntry, ValueChanged; | ||
import 'package:flutter/widgets.dart' | ||
show | ||
Color, | ||
EdgeInsetsGeometry, | ||
TextStyle, | ||
VoidCallback, | ||
TextOverflow, | ||
EdgeInsets; | ||
|
||
import '../../../../widgets/controller.dart'; | ||
import '../../../documents/attribute.dart'; | ||
import '../../../themes/quill_icon_theme.dart'; | ||
import '../../quill_configurations.dart'; | ||
|
||
@immutable | ||
class QuillToolbarFontSizeButtonOptions extends QuillToolbarBaseButtonOptions { | ||
const QuillToolbarFontSizeButtonOptions({ | ||
this.iconSize, | ||
this.fillColor, | ||
this.hoverElevation = 1, | ||
this.highlightElevation = 1, | ||
this.items, | ||
this.rawItemsMap, | ||
this.onSelected, | ||
this.iconTheme, | ||
this.attribute = Attribute.size, | ||
this.controller, | ||
this.afterButtonPressed, | ||
this.tooltip, | ||
this.padding, | ||
this.style, | ||
this.width, | ||
this.initialValue, | ||
this.labelOverflow = TextOverflow.visible, | ||
this.itemHeight, | ||
this.itemPadding, | ||
this.defaultItemColor = Colors.red, | ||
}); | ||
|
||
final double? iconSize; | ||
final Color? fillColor; | ||
final double hoverElevation; | ||
final double highlightElevation; | ||
@Deprecated('It is not required because of `rawItemsMap`') | ||
final List<PopupMenuEntry<String>>? items; | ||
final Map<String, String>? rawItemsMap; | ||
final ValueChanged<String>? onSelected; | ||
@override | ||
final QuillIconTheme? iconTheme; | ||
final Attribute attribute; | ||
@override | ||
final QuillController? controller; | ||
@override | ||
final VoidCallback? afterButtonPressed; | ||
@override | ||
final String? tooltip; | ||
final EdgeInsetsGeometry? padding; | ||
final TextStyle? style; | ||
final double? width; | ||
final String? initialValue; | ||
final TextOverflow labelOverflow; | ||
final double? itemHeight; | ||
final EdgeInsets? itemPadding; | ||
final Color? defaultItemColor; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.