@ -86,32 +86,24 @@ The `QuillToolbar` class lets you customise which formatting options are availab
[Sample Page] provides sample code for advanced usage and configuration.
### Font Size
Within the editor toolbar, a drop-down with font-sizing capabilties is available. This can be enabled or disabled with `showFontSize`.
Within the editor toolbar, a drop-down with font-sizing capabilities is available. This can be enabled or disabled with `showFontSize`.
When enabled, the default font-size values can be modified via _optional_`fontSizeValues`. `fontSizeValues` accepts a `Map<String, String>` consisting of a `String` title for the font size and an`String` value for the font size. Example:
When enabled, the default font-size values can be modified via _optional_`fontSizeValues`. `fontSizeValues` accepts a `Map<String, String>` consisting of a `String` title for the font size and a `String` value for the font size. Example:
The initial value for font-size in the editor can also be defined via _optional_`initialFontSizeValue` which corresponds to the index value within your map. For example, if you would like the Medium font size to be the default start size in the above example, you would set `initialFontSizeValue: 2`.
This initial font size is not applied to the delta when first building the widget, it is only used to change the initial value for the drop-down widget.
### Custom Icons
You may add custom icons to the _end_ of the toolbar, via the `customIcons` option, which is a `List` of `QuillCustomIcon`.
To add an Icon, we should use a new QuillCustomIcon class
```
QuillCustomIcon(
icon:Icons.ac_unit,
onTap: (){
debugPrint('snowflake');
}
),
QuillCustomIcon(
icon:Icons.ac_unit,
onTap: (){
debugPrint('snowflake');
}
),
```
Each `QuillCustomIcon` is used as part of the `customIcons` option as follows:
@ -119,26 +111,26 @@ Each `QuillCustomIcon` is used as part of the `customIcons` option as follows: