diff --git a/lib/widgets/toolbar.dart b/lib/widgets/toolbar.dart index 98c792cc..8abc2c37 100644 --- a/lib/widgets/toolbar.dart +++ b/lib/widgets/toolbar.dart @@ -381,13 +381,13 @@ class ImageButton extends StatefulWidget { final UploadFileCallback uploadFileCallback; - // final ImageSource imageSource; + final ImageSource imageSource; ImageButton( {Key key, @required this.icon, @required this.controller, - // @required this.imageSource, + @required this.imageSource, this.uploadFileCallback}) : assert(icon != null), assert(controller != null), @@ -430,14 +430,14 @@ class _ImageButtonState extends State { onPressed: () { final index = widget.controller.selection.baseOffset; final length = widget.controller.selection.extentOffset - index; - // final image = _pickImage(widget.imageSource); - // image.then((imageUploadUrl) => { - // if (imageUploadUrl != null) - // { - // widget.controller.replaceText( - // index, length, BlockEmbed(imageUploadUrl), null) - // } - // }); + final image = _pickImage(widget.imageSource); + image.then((imageUploadUrl) => { + if (imageUploadUrl != null) + { + widget.controller.replaceText( + index, length, BlockEmbed(imageUploadUrl), null) + } + }); }, ); } @@ -554,69 +554,6 @@ class _BackgroundColorButtonState extends State { } } -class IndentButton extends StatefulWidget { - final IconData icon; - - final QuillController controller; - - IndentButton({Key key, @required this.icon, @required this.controller}) - : assert(icon != null), - assert(controller != null), - super(key: key); - - @override - _IndentButtonState createState() => _IndentButtonState(); -} - -class _IndentButtonState extends State { - @override - Widget build(BuildContext context) { - final theme = Theme.of(context); - final iconColor = theme.iconTheme.color; - final fillColor = theme.canvasColor; - return QuillIconButton( - highlightElevation: 0, - hoverElevation: 0, - size: 32, - icon: Icon(widget.icon, size: 18, color: iconColor), - fillColor: fillColor, -// onPressed: , - ); - } -} - -class ClearFormatButton extends StatefulWidget { - final IconData icon; - - final QuillController controller; - - ClearFormatButton({Key key, @required this.icon, @required this.controller}) - : assert(icon != null), - assert(controller != null), - super(key: key); - - @override - _ClearFormatButtonState createState() => _ClearFormatButtonState(); -} - -class _ClearFormatButtonState extends State { - @override - Widget build(BuildContext context) { - final theme = Theme.of(context); - final iconColor = theme.iconTheme.color; - final fillColor = theme.canvasColor; - return QuillIconButton( - highlightElevation: 0, - hoverElevation: 0, - size: 32, - icon: Icon(widget.icon, size: 18, color: iconColor), - fillColor: fillColor, -// onPressed: , - ); - } -} - - class QuillToolbar extends StatefulWidget implements PreferredSizeWidget { final List children; @@ -631,13 +568,11 @@ class QuillToolbar extends StatefulWidget implements PreferredSizeWidget { bool showStrikeThrough = true, bool showColorButton = true, bool showBackgroundColorButton = true, - bool showClearFormat = true, bool showHeaderStyle = true, bool showListNumbers = true, bool showListBullets = true, bool showCodeBlock = true, bool showQuote = true, - bool showIndent = true, bool showLink = true, bool showHorizontalRule = false, UploadFileCallback uploadFileCallback}) { @@ -693,33 +628,26 @@ class QuillToolbar extends StatefulWidget implements PreferredSizeWidget { controller: controller, ), ), + SizedBox(width: 1), Visibility( - visible: showClearFormat, - child: ClearFormatButton( - icon: Icons.format_clear, + visible: uploadFileCallback != null, + child: ImageButton( + icon: Icons.image, controller: controller, + imageSource: ImageSource.gallery, + uploadFileCallback: uploadFileCallback, + ), + ), + SizedBox(width: 1), + Visibility( + visible: uploadFileCallback != null, + child: ImageButton( + icon: Icons.photo_camera, + controller: controller, + imageSource: ImageSource.camera, + uploadFileCallback: uploadFileCallback, ), ), - // SizedBox(width: 1), - // Visibility( - // visible: uploadFileCallback != null, - // child: ImageButton( - // icon: Icons.image, - // controller: controller, - // imageSource: ImageSource.gallery, - // uploadFileCallback: uploadFileCallback, - // ), - // ), - // SizedBox(width: 1), - // Visibility( - // visible: uploadFileCallback != null, - // child: ImageButton( - // icon: Icons.photo_camera, - // controller: controller, - // imageSource: ImageSource.camera, - // uploadFileCallback: uploadFileCallback, - // ), - // ), Visibility( visible: showHeaderStyle, child: VerticalDivider( @@ -768,14 +696,6 @@ class QuillToolbar extends StatefulWidget implements PreferredSizeWidget { visible: showQuote, child: VerticalDivider( indent: 16, endIndent: 16, color: Colors.grey.shade400)), - // SizedBox(width: 1), - Visibility( - visible: showIndent, - child: IndentButton( - icon: Icons.format_indent_increase, - controller: controller, - ), - ), Visibility( visible: showLink, child: LinkStyleButton(controller: controller)), Visibility(