Merge pull request #13 from ArjanAswal/master

Support the use of custom icon size in toolbar
pull/17/head
Xin Yao 4 years ago committed by GitHub
commit a0644c376e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      CHANGELOG.md
  2. 2
      app/pubspec.lock
  3. 56
      lib/widgets/toolbar.dart
  4. 2
      pubspec.yaml

@ -63,4 +63,7 @@
* Update git repo. * Update git repo.
## [0.2.3] ## [0.2.3]
* Support custom styles and image on local device storage without uploading. * Support custom styles and image on local device storage without uploading.
## [0.2.4]
* Support the use of custom icon size in toolbar.

@ -82,7 +82,7 @@ packages:
path: ".." path: ".."
relative: true relative: true
source: path source: path
version: "0.2.1" version: "0.2.2"
flutter_test: flutter_test:
dependency: "direct dev" dependency: "direct dev"
description: flutter description: flutter

@ -9,7 +9,8 @@ import 'package:image_picker/image_picker.dart';
import 'controller.dart'; import 'controller.dart';
const double kToolbarHeight = 56.0; double iconSize = 18.0;
double kToolbarHeight = iconSize * 2;
typedef UploadFileCallback = Future<String> Function(File file); typedef UploadFileCallback = Future<String> Function(File file);
@ -28,10 +29,10 @@ class InsertEmbedButton extends StatelessWidget {
return QuillIconButton( return QuillIconButton(
highlightElevation: 0, highlightElevation: 0,
hoverElevation: 0, hoverElevation: 0,
size: 32, size: iconSize * 1.77,
icon: Icon( icon: Icon(
icon, icon,
size: 18, size: iconSize,
color: Theme.of(context).iconTheme.color, color: Theme.of(context).iconTheme.color,
), ),
fillColor: Theme.of(context).canvasColor, fillColor: Theme.of(context).canvasColor,
@ -92,10 +93,10 @@ class _LinkStyleButtonState extends State<LinkStyleButton> {
return QuillIconButton( return QuillIconButton(
highlightElevation: 0, highlightElevation: 0,
hoverElevation: 0, hoverElevation: 0,
size: 32, size: iconSize * 1.77,
icon: Icon( icon: Icon(
widget.icon ?? Icons.link, widget.icon ?? Icons.link,
size: 18, size: iconSize,
color: isEnabled ? theme.iconTheme.color : theme.disabledColor, color: isEnabled ? theme.iconTheme.color : theme.disabledColor,
), ),
fillColor: Theme.of(context).canvasColor, fillColor: Theme.of(context).canvasColor,
@ -360,8 +361,8 @@ Widget defaultToggleStyleButtonBuilder(
return QuillIconButton( return QuillIconButton(
highlightElevation: 0, highlightElevation: 0,
hoverElevation: 0, hoverElevation: 0,
size: 32, size: iconSize * 1.77,
icon: Icon(icon, size: 18, color: iconColor), icon: Icon(icon, size: iconSize, color: iconColor),
fillColor: fillColor, fillColor: fillColor,
onPressed: onPressed, onPressed: onPressed,
); );
@ -427,7 +428,7 @@ class _SelectHeaderStyleButtonState extends State<SelectHeaderStyleButton> {
Widget _selectHeadingStyleButtonBuilder( Widget _selectHeadingStyleButtonBuilder(
BuildContext context, Attribute value, ValueChanged<Attribute> onSelected) { BuildContext context, Attribute value, ValueChanged<Attribute> onSelected) {
final style = TextStyle(fontSize: 12); final style = TextStyle(fontSize: 13);
final Map<Attribute, String> _valueToText = { final Map<Attribute, String> _valueToText = {
Attribute.header: 'Normal text', Attribute.header: 'Normal text',
@ -439,32 +440,33 @@ Widget _selectHeadingStyleButtonBuilder(
return QuillDropdownButton<Attribute>( return QuillDropdownButton<Attribute>(
highlightElevation: 0, highlightElevation: 0,
hoverElevation: 0, hoverElevation: 0,
height: 32, height: iconSize * 1.77,
fillColor: Theme.of(context).canvasColor,
child: Text( child: Text(
_valueToText[value], _valueToText[value],
style: TextStyle(fontSize: 12, fontWeight: FontWeight.w600), style: TextStyle(fontSize: 13, fontWeight: FontWeight.w600),
), ),
initialValue: value, initialValue: value,
items: [ items: [
PopupMenuItem( PopupMenuItem(
child: Text(_valueToText[Attribute.header], style: style), child: Text(_valueToText[Attribute.header], style: style),
value: Attribute.header, value: Attribute.header,
height: 32, height: iconSize * 1.77,
), ),
PopupMenuItem( PopupMenuItem(
child: Text(_valueToText[Attribute.h1], style: style), child: Text(_valueToText[Attribute.h1], style: style),
value: Attribute.h1, value: Attribute.h1,
height: 32, height: iconSize * 1.77,
), ),
PopupMenuItem( PopupMenuItem(
child: Text(_valueToText[Attribute.h2], style: style), child: Text(_valueToText[Attribute.h2], style: style),
value: Attribute.h2, value: Attribute.h2,
height: 32, height: iconSize * 1.77,
), ),
PopupMenuItem( PopupMenuItem(
child: Text(_valueToText[Attribute.h3], style: style), child: Text(_valueToText[Attribute.h3], style: style),
value: Attribute.h3, value: Attribute.h3,
height: 32, height: iconSize * 1.77,
), ),
], ],
onSelected: onSelected, onSelected: onSelected,
@ -521,8 +523,8 @@ class _ImageButtonState extends State<ImageButton> {
return QuillIconButton( return QuillIconButton(
highlightElevation: 0, highlightElevation: 0,
hoverElevation: 0, hoverElevation: 0,
size: 32, size: iconSize * 1.77,
icon: Icon(widget.icon, size: 18, color: iconColor), icon: Icon(widget.icon, size: iconSize, color: iconColor),
fillColor: fillColor, fillColor: fillColor,
onPressed: () { onPressed: () {
final index = widget.controller.selection.baseOffset; final index = widget.controller.selection.baseOffset;
@ -572,8 +574,8 @@ class _ColorButtonState extends State<ColorButton> {
return QuillIconButton( return QuillIconButton(
highlightElevation: 0, highlightElevation: 0,
hoverElevation: 0, hoverElevation: 0,
size: 32, size: iconSize * 1.77,
icon: Icon(widget.icon, size: 18, color: iconColor), icon: Icon(widget.icon, size: iconSize, color: iconColor),
fillColor: fillColor, fillColor: fillColor,
onPressed: _showColorPicker, onPressed: _showColorPicker,
); );
@ -595,6 +597,7 @@ class _ColorButtonState extends State<ColorButton> {
context: context, context: context,
builder: (_) => AlertDialog( builder: (_) => AlertDialog(
title: const Text('Select Color'), title: const Text('Select Color'),
backgroundColor: Theme.of(context).canvasColor,
content: SingleChildScrollView( content: SingleChildScrollView(
child: MaterialPicker( child: MaterialPicker(
pickerColor: Color(0), pickerColor: Color(0),
@ -640,8 +643,8 @@ class _HistoryButtonState extends State<HistoryButton> {
return QuillIconButton( return QuillIconButton(
highlightElevation: 0, highlightElevation: 0,
hoverElevation: 0, hoverElevation: 0,
size: 32, size: iconSize * 1.77,
icon: Icon(widget.icon, size: 18, color: _iconColor), icon: Icon(widget.icon, size: iconSize, color: _iconColor),
fillColor: fillColor, fillColor: fillColor,
onPressed: _changeHistory, onPressed: _changeHistory,
); );
@ -706,8 +709,8 @@ class _IndentButtonState extends State<IndentButton> {
return QuillIconButton( return QuillIconButton(
highlightElevation: 0, highlightElevation: 0,
hoverElevation: 0, hoverElevation: 0,
size: 32, size: iconSize * 1.77,
icon: Icon(widget.icon, size: 18, color: iconColor), icon: Icon(widget.icon, size: iconSize, color: iconColor),
fillColor: fillColor, fillColor: fillColor,
onPressed: () { onPressed: () {
final indent = widget.controller final indent = widget.controller
@ -759,8 +762,8 @@ class _ClearFormatButtonState extends State<ClearFormatButton> {
return QuillIconButton( return QuillIconButton(
highlightElevation: 0, highlightElevation: 0,
hoverElevation: 0, hoverElevation: 0,
size: 32, size: iconSize * 1.77,
icon: Icon(widget.icon, size: 18, color: iconColor), icon: Icon(widget.icon, size: iconSize, color: iconColor),
fillColor: fillColor, fillColor: fillColor,
onPressed: () { onPressed: () {
for (Attribute k for (Attribute k
@ -779,6 +782,7 @@ class QuillToolbar extends StatefulWidget implements PreferredSizeWidget {
factory QuillToolbar.basic( factory QuillToolbar.basic(
{Key key, {Key key,
@required QuillController controller, @required QuillController controller,
double toolbarIconSize = 18.0,
bool showBoldButton = true, bool showBoldButton = true,
bool showItalicButton = true, bool showItalicButton = true,
bool showUnderLineButton = true, bool showUnderLineButton = true,
@ -797,6 +801,7 @@ class QuillToolbar extends StatefulWidget implements PreferredSizeWidget {
bool showHistory = true, bool showHistory = true,
bool showHorizontalRule = false, bool showHorizontalRule = false,
UploadFileCallback uploadFileCallback}) { UploadFileCallback uploadFileCallback}) {
iconSize = toolbarIconSize;
return QuillToolbar(key: key, children: [ return QuillToolbar(key: key, children: [
Visibility( Visibility(
visible: showHistory, visible: showHistory,
@ -996,6 +1001,7 @@ class _QuillToolbarState extends State<QuillToolbar> {
return Container( return Container(
padding: EdgeInsets.symmetric(horizontal: 8), padding: EdgeInsets.symmetric(horizontal: 8),
constraints: BoxConstraints.tightFor(height: widget.preferredSize.height), constraints: BoxConstraints.tightFor(height: widget.preferredSize.height),
color: Theme.of(context).canvasColor,
child: SingleChildScrollView( child: SingleChildScrollView(
scrollDirection: Axis.horizontal, scrollDirection: Axis.horizontal,
child: Row( child: Row(
@ -1132,7 +1138,7 @@ class _QuillDropdownButtonState<T> extends State<QuillDropdownButton<T>> {
children: [ children: [
widget.child, widget.child,
Expanded(child: Container()), Expanded(child: Container()),
Icon(Icons.arrow_drop_down, size: 14) Icon(Icons.arrow_drop_down, size: 15)
], ],
), ),
), ),

@ -1,6 +1,6 @@
name: flutter_quill name: flutter_quill
description: One client and affiliated collaborator of Flutter Quill is Bullet Journal App. description: One client and affiliated collaborator of Flutter Quill is Bullet Journal App.
version: 0.2.3 version: 0.2.4
#author: bulletjournal #author: bulletjournal
homepage: https://bulletjournal.us/home/index.html homepage: https://bulletjournal.us/home/index.html
repository: https://github.com/singerdmx/flutter-quill.git repository: https://github.com/singerdmx/flutter-quill.git

Loading…
Cancel
Save