|
|
|
@ -6,6 +6,7 @@ import 'package:i18n_extension/i18n_widget.dart'; |
|
|
|
|
import '../models/documents/attribute.dart'; |
|
|
|
|
import '../models/themes/quill_dialog_theme.dart'; |
|
|
|
|
import '../models/themes/quill_icon_theme.dart'; |
|
|
|
|
import '../models/themes/quill_custom_icon.dart'; |
|
|
|
|
import 'controller.dart'; |
|
|
|
|
import 'toolbar/arrow_indicated_button_list.dart'; |
|
|
|
|
import 'toolbar/camera_button.dart'; |
|
|
|
@ -22,6 +23,7 @@ import 'toolbar/toggle_check_list_button.dart'; |
|
|
|
|
import 'toolbar/toggle_style_button.dart'; |
|
|
|
|
import 'toolbar/video_button.dart'; |
|
|
|
|
import 'toolbar/quill_dropdown_button.dart'; |
|
|
|
|
import 'toolbar/quill_icon_button.dart'; |
|
|
|
|
|
|
|
|
|
export 'toolbar/clear_format_button.dart'; |
|
|
|
|
export 'toolbar/color_button.dart'; |
|
|
|
@ -63,6 +65,7 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget { |
|
|
|
|
this.multiRowsDisplay = true, |
|
|
|
|
this.color, |
|
|
|
|
this.filePickImpl, |
|
|
|
|
this.customIcons = const [], |
|
|
|
|
this.locale, |
|
|
|
|
Key? key, |
|
|
|
|
}) : super(key: key); |
|
|
|
@ -109,6 +112,7 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget { |
|
|
|
|
FilePickImpl? filePickImpl, |
|
|
|
|
WebImagePickImpl? webImagePickImpl, |
|
|
|
|
WebVideoPickImpl? webVideoPickImpl, |
|
|
|
|
List<QuillCustomIcon> customIcons = const [], |
|
|
|
|
|
|
|
|
|
///Map of font sizes in [int] |
|
|
|
|
Map<String, int>? fontSizeValues, |
|
|
|
@ -172,6 +176,7 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget { |
|
|
|
|
toolbarSectionSpacing: toolbarSectionSpacing, |
|
|
|
|
toolbarIconAlignment: toolbarIconAlignment, |
|
|
|
|
multiRowsDisplay: multiRowsDisplay, |
|
|
|
|
customIcons: customIcons, |
|
|
|
|
locale: locale, |
|
|
|
|
children: [ |
|
|
|
|
if (showUndo) |
|
|
|
@ -463,6 +468,22 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget { |
|
|
|
|
iconTheme: iconTheme, |
|
|
|
|
dialogTheme: dialogTheme, |
|
|
|
|
), |
|
|
|
|
if (customIcons.isNotEmpty) |
|
|
|
|
if (showDividers) |
|
|
|
|
VerticalDivider( |
|
|
|
|
indent: 12, |
|
|
|
|
endIndent: 12, |
|
|
|
|
color: Colors.grey.shade400, |
|
|
|
|
), |
|
|
|
|
for (var customIcon in customIcons) |
|
|
|
|
QuillIconButton( |
|
|
|
|
highlightElevation: 0, |
|
|
|
|
hoverElevation: 0, |
|
|
|
|
size: toolbarIconSize * kIconButtonFactor, |
|
|
|
|
icon: Icon(customIcon.icon, size: toolbarIconSize), |
|
|
|
|
borderRadius:iconTheme?.borderRadius ?? 2, |
|
|
|
|
onPressed: customIcon.onTap |
|
|
|
|
), |
|
|
|
|
], |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
@ -485,6 +506,9 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget { |
|
|
|
|
/// More https://github.com/singerdmx/flutter-quill#translation |
|
|
|
|
final Locale? locale; |
|
|
|
|
|
|
|
|
|
/// List of custom icons |
|
|
|
|
final List<QuillCustomIcon> customIcons; |
|
|
|
|
|
|
|
|
|
@override |
|
|
|
|
Size get preferredSize => Size.fromHeight(toolbarHeight); |
|
|
|
|
|
|
|
|
|