Upgrade to 4.1.5

pull/791/head
X Code 3 years ago
parent 7b330c95f0
commit 6ac59dcfbb
  1. 3
      CHANGELOG.md
  2. 50
      lib/src/widgets/toolbar.dart
  3. 7
      lib/src/widgets/toolbar/quill_dropdown_button.dart
  4. 2
      pubspec.yaml

@ -1,3 +1,6 @@
# [4.1.5]
* Add Font Size dropdown to the toolbar.
# [4.1.4]
* New borderRadius for iconTheme.

@ -113,7 +113,7 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget {
///List of font sizes in [int]
List? fontSizeValues,
int? initialFontSizeValue,
///The theme to use for the icons in the toolbar, uses type [QuillIconTheme]
QuillIconTheme? iconTheme,
@ -127,8 +127,8 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget {
Key? key,
}) {
final isButtonGroupShown = [
showFontSize ||
showBoldButton ||
showFontSize ||
showBoldButton ||
showItalicButton ||
showSmallButton ||
showUnderLineButton ||
@ -151,19 +151,9 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget {
];
//default font size values
final fontSizes = fontSizeValues ?? [
10,
12,
14,
16,
18,
20,
24,
28,
32,
48
];
final fontSizes =
fontSizeValues ?? [10, 12, 14, 16, 18, 20, 24, 28, 32, 48];
return QuillToolbar(
key: key,
toolbarHeight: toolbarIconSize * 2,
@ -189,24 +179,24 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget {
iconTheme: iconTheme,
),
if (showFontSize)
QuillDropdownButton(
iconTheme: iconTheme,
height:toolbarIconSize*2,
items:[
for (var fontSize in fontSizes)
QuillDropdownButton(
iconTheme: iconTheme,
height: toolbarIconSize * 2,
items: [
for (var fontSize in fontSizes)
PopupMenuItem<int>(
value: fontSize,
child: Text(fontSize.toString()),
),
],
onSelected:(newSize){
if (newSize != null)
{
controller.formatSelection(Attribute.fromKeyValue('size', newSize));
}
},
initialValue: fontSizes[initialFontSizeValue ?? 0],
),
],
onSelected: (newSize) {
if (newSize != null) {
controller
.formatSelection(Attribute.fromKeyValue('size', newSize));
}
},
initialValue: fontSizes[initialFontSizeValue ?? 0],
),
if (showBoldButton)
ToggleStyleButton(
attribute: Attribute.bold,

@ -29,14 +29,13 @@ class QuillDropdownButton<T> extends StatefulWidget {
// ignore: deprecated_member_use_from_same_package
class _QuillDropdownButtonState<T> extends State<QuillDropdownButton<T>> {
int _currentValue = 0;
@override
void initState(){
_currentValue = widget.initialValue as int;
void initState() {
_currentValue = widget.initialValue as int;
}
@override
Widget build(BuildContext context) {
return ConstrainedBox(

@ -1,6 +1,6 @@
name: flutter_quill
description: A rich text editor supporting mobile and web (Demo App @ bulletjournal.us)
version: 4.1.4
version: 4.1.5
#author: bulletjournal
homepage: https://bulletjournal.us/home/index.html
repository: https://github.com/singerdmx/flutter-quill

Loading…
Cancel
Save