|
|
|
@ -3,6 +3,8 @@ import 'dart:io'; |
|
|
|
|
import 'package:flutter/material.dart'; |
|
|
|
|
|
|
|
|
|
import '../models/documents/attribute.dart'; |
|
|
|
|
import '../models/themes/quill_icon_theme.dart'; |
|
|
|
|
import '../models/themes/quill_dialog_theme.dart'; |
|
|
|
|
import '../utils/media_pick_setting.dart'; |
|
|
|
|
import 'controller.dart'; |
|
|
|
|
import 'toolbar/arrow_indicated_button_list.dart'; |
|
|
|
@ -95,6 +97,12 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget { |
|
|
|
|
FilePickImpl? filePickImpl, |
|
|
|
|
WebImagePickImpl? webImagePickImpl, |
|
|
|
|
WebVideoPickImpl? webVideoPickImpl, |
|
|
|
|
|
|
|
|
|
///The theme to use for the icons in the toolbar, uses type [QuillIconTheme] |
|
|
|
|
QuillIconTheme? iconTheme, |
|
|
|
|
|
|
|
|
|
///The theme to use for the theming of the [LinkDialog()], shown when embedding an image, for example |
|
|
|
|
QuillDialogTheme? dialogTheme, |
|
|
|
|
Key? key, |
|
|
|
|
}) { |
|
|
|
|
final isButtonGroupShown = [ |
|
|
|
@ -128,6 +136,7 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget { |
|
|
|
|
iconSize: toolbarIconSize, |
|
|
|
|
controller: controller, |
|
|
|
|
undo: true, |
|
|
|
|
iconTheme: iconTheme, |
|
|
|
|
), |
|
|
|
|
if (showHistory) |
|
|
|
|
HistoryButton( |
|
|
|
@ -135,6 +144,7 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget { |
|
|
|
|
iconSize: toolbarIconSize, |
|
|
|
|
controller: controller, |
|
|
|
|
undo: false, |
|
|
|
|
iconTheme: iconTheme, |
|
|
|
|
), |
|
|
|
|
if (showBoldButton) |
|
|
|
|
ToggleStyleButton( |
|
|
|
@ -142,6 +152,7 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget { |
|
|
|
|
icon: Icons.format_bold, |
|
|
|
|
iconSize: toolbarIconSize, |
|
|
|
|
controller: controller, |
|
|
|
|
iconTheme: iconTheme, |
|
|
|
|
), |
|
|
|
|
if (showItalicButton) |
|
|
|
|
ToggleStyleButton( |
|
|
|
@ -149,6 +160,7 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget { |
|
|
|
|
icon: Icons.format_italic, |
|
|
|
|
iconSize: toolbarIconSize, |
|
|
|
|
controller: controller, |
|
|
|
|
iconTheme: iconTheme, |
|
|
|
|
), |
|
|
|
|
if (showSmallButton) |
|
|
|
|
ToggleStyleButton( |
|
|
|
@ -156,6 +168,7 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget { |
|
|
|
|
icon: Icons.format_size, |
|
|
|
|
iconSize: toolbarIconSize, |
|
|
|
|
controller: controller, |
|
|
|
|
iconTheme: iconTheme, |
|
|
|
|
), |
|
|
|
|
if (showUnderLineButton) |
|
|
|
|
ToggleStyleButton( |
|
|
|
@ -163,6 +176,7 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget { |
|
|
|
|
icon: Icons.format_underline, |
|
|
|
|
iconSize: toolbarIconSize, |
|
|
|
|
controller: controller, |
|
|
|
|
iconTheme: iconTheme, |
|
|
|
|
), |
|
|
|
|
if (showStrikeThrough) |
|
|
|
|
ToggleStyleButton( |
|
|
|
@ -170,6 +184,7 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget { |
|
|
|
|
icon: Icons.format_strikethrough, |
|
|
|
|
iconSize: toolbarIconSize, |
|
|
|
|
controller: controller, |
|
|
|
|
iconTheme: iconTheme, |
|
|
|
|
), |
|
|
|
|
if (showInlineCode) |
|
|
|
|
ToggleStyleButton( |
|
|
|
@ -177,6 +192,7 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget { |
|
|
|
|
icon: Icons.code, |
|
|
|
|
iconSize: toolbarIconSize, |
|
|
|
|
controller: controller, |
|
|
|
|
iconTheme: iconTheme, |
|
|
|
|
), |
|
|
|
|
if (showColorButton) |
|
|
|
|
ColorButton( |
|
|
|
@ -184,6 +200,7 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget { |
|
|
|
|
iconSize: toolbarIconSize, |
|
|
|
|
controller: controller, |
|
|
|
|
background: false, |
|
|
|
|
iconTheme: iconTheme, |
|
|
|
|
), |
|
|
|
|
if (showBackgroundColorButton) |
|
|
|
|
ColorButton( |
|
|
|
@ -191,12 +208,14 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget { |
|
|
|
|
iconSize: toolbarIconSize, |
|
|
|
|
controller: controller, |
|
|
|
|
background: true, |
|
|
|
|
iconTheme: iconTheme, |
|
|
|
|
), |
|
|
|
|
if (showClearFormat) |
|
|
|
|
ClearFormatButton( |
|
|
|
|
icon: Icons.format_clear, |
|
|
|
|
iconSize: toolbarIconSize, |
|
|
|
|
controller: controller, |
|
|
|
|
iconTheme: iconTheme, |
|
|
|
|
), |
|
|
|
|
if (showImageButton) |
|
|
|
|
ImageButton( |
|
|
|
@ -207,6 +226,8 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget { |
|
|
|
|
filePickImpl: filePickImpl, |
|
|
|
|
webImagePickImpl: webImagePickImpl, |
|
|
|
|
mediaPickSettingSelector: mediaPickSettingSelector, |
|
|
|
|
iconTheme: iconTheme, |
|
|
|
|
dialogTheme: dialogTheme, |
|
|
|
|
), |
|
|
|
|
if (showVideoButton) |
|
|
|
|
VideoButton( |
|
|
|
@ -217,18 +238,22 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget { |
|
|
|
|
filePickImpl: filePickImpl, |
|
|
|
|
webVideoPickImpl: webImagePickImpl, |
|
|
|
|
mediaPickSettingSelector: mediaPickSettingSelector, |
|
|
|
|
iconTheme: iconTheme, |
|
|
|
|
dialogTheme: dialogTheme, |
|
|
|
|
), |
|
|
|
|
if ((onImagePickCallback != null || onVideoPickCallback != null) && |
|
|
|
|
showCameraButton) |
|
|
|
|
CameraButton( |
|
|
|
|
icon: Icons.photo_camera, |
|
|
|
|
iconSize: toolbarIconSize, |
|
|
|
|
controller: controller, |
|
|
|
|
onImagePickCallback: onImagePickCallback, |
|
|
|
|
onVideoPickCallback: onVideoPickCallback, |
|
|
|
|
filePickImpl: filePickImpl, |
|
|
|
|
webImagePickImpl: webImagePickImpl, |
|
|
|
|
webVideoPickImpl: webVideoPickImpl), |
|
|
|
|
icon: Icons.photo_camera, |
|
|
|
|
iconSize: toolbarIconSize, |
|
|
|
|
controller: controller, |
|
|
|
|
onImagePickCallback: onImagePickCallback, |
|
|
|
|
onVideoPickCallback: onVideoPickCallback, |
|
|
|
|
filePickImpl: filePickImpl, |
|
|
|
|
webImagePickImpl: webImagePickImpl, |
|
|
|
|
webVideoPickImpl: webVideoPickImpl, |
|
|
|
|
iconTheme: iconTheme, |
|
|
|
|
), |
|
|
|
|
if (isButtonGroupShown[0] && |
|
|
|
|
(isButtonGroupShown[1] || |
|
|
|
|
isButtonGroupShown[2] || |
|
|
|
@ -259,6 +284,7 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget { |
|
|
|
|
SelectHeaderStyleButton( |
|
|
|
|
controller: controller, |
|
|
|
|
iconSize: toolbarIconSize, |
|
|
|
|
iconTheme: iconTheme, |
|
|
|
|
), |
|
|
|
|
if (isButtonGroupShown[2] && |
|
|
|
|
(isButtonGroupShown[3] || |
|
|
|
@ -275,6 +301,7 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget { |
|
|
|
|
controller: controller, |
|
|
|
|
icon: Icons.format_list_numbered, |
|
|
|
|
iconSize: toolbarIconSize, |
|
|
|
|
iconTheme: iconTheme, |
|
|
|
|
), |
|
|
|
|
if (showListBullets) |
|
|
|
|
ToggleStyleButton( |
|
|
|
@ -282,6 +309,7 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget { |
|
|
|
|
controller: controller, |
|
|
|
|
icon: Icons.format_list_bulleted, |
|
|
|
|
iconSize: toolbarIconSize, |
|
|
|
|
iconTheme: iconTheme, |
|
|
|
|
), |
|
|
|
|
if (showListCheck) |
|
|
|
|
ToggleCheckListButton( |
|
|
|
@ -289,6 +317,7 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget { |
|
|
|
|
controller: controller, |
|
|
|
|
icon: Icons.check_box, |
|
|
|
|
iconSize: toolbarIconSize, |
|
|
|
|
iconTheme: iconTheme, |
|
|
|
|
), |
|
|
|
|
if (showCodeBlock) |
|
|
|
|
ToggleStyleButton( |
|
|
|
@ -296,6 +325,7 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget { |
|
|
|
|
controller: controller, |
|
|
|
|
icon: Icons.code, |
|
|
|
|
iconSize: toolbarIconSize, |
|
|
|
|
iconTheme: iconTheme, |
|
|
|
|
), |
|
|
|
|
if (isButtonGroupShown[3] && |
|
|
|
|
(isButtonGroupShown[4] || isButtonGroupShown[5])) |
|
|
|
@ -310,6 +340,7 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget { |
|
|
|
|
controller: controller, |
|
|
|
|
icon: Icons.format_quote, |
|
|
|
|
iconSize: toolbarIconSize, |
|
|
|
|
iconTheme: iconTheme, |
|
|
|
|
), |
|
|
|
|
if (showIndent) |
|
|
|
|
IndentButton( |
|
|
|
@ -317,6 +348,7 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget { |
|
|
|
|
iconSize: toolbarIconSize, |
|
|
|
|
controller: controller, |
|
|
|
|
isIncrease: true, |
|
|
|
|
iconTheme: iconTheme, |
|
|
|
|
), |
|
|
|
|
if (showIndent) |
|
|
|
|
IndentButton( |
|
|
|
@ -324,6 +356,7 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget { |
|
|
|
|
iconSize: toolbarIconSize, |
|
|
|
|
controller: controller, |
|
|
|
|
isIncrease: false, |
|
|
|
|
iconTheme: iconTheme, |
|
|
|
|
), |
|
|
|
|
if (isButtonGroupShown[4] && isButtonGroupShown[5]) |
|
|
|
|
VerticalDivider( |
|
|
|
@ -335,12 +368,15 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget { |
|
|
|
|
LinkStyleButton( |
|
|
|
|
controller: controller, |
|
|
|
|
iconSize: toolbarIconSize, |
|
|
|
|
iconTheme: iconTheme, |
|
|
|
|
dialogTheme: dialogTheme, |
|
|
|
|
), |
|
|
|
|
if (showHorizontalRule) |
|
|
|
|
InsertEmbedButton( |
|
|
|
|
controller: controller, |
|
|
|
|
icon: Icons.horizontal_rule, |
|
|
|
|
iconSize: toolbarIconSize, |
|
|
|
|
iconTheme: iconTheme, |
|
|
|
|
), |
|
|
|
|
], |
|
|
|
|
); |
|
|
|
|