dartlangeditorflutterflutter-appsflutter-examplesflutter-packageflutter-widgetquillquill-deltaquilljsreactquillrich-textrich-text-editorwysiwygwysiwyg-editor
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
870 B
30 lines
870 B
import 'package:flutter/material.dart'; |
|
|
|
class QuillIconTheme { |
|
const QuillIconTheme({ |
|
this.iconSelectedColor, |
|
this.iconUnselectedColor, |
|
this.iconSelectedFillColor, |
|
this.iconUnselectedFillColor, |
|
this.disabledIconColor, |
|
this.disabledIconFillColor, |
|
}); |
|
|
|
///The color to use for selected icons in the toolbar |
|
final Color? iconSelectedColor; |
|
|
|
///The color to use for unselected icons in the toolbar |
|
final Color? iconUnselectedColor; |
|
|
|
///The fill color to use for the selected icons in the toolbar |
|
final Color? iconSelectedFillColor; |
|
|
|
///The fill color to use for the unselected icons in the toolbar |
|
final Color? iconUnselectedFillColor; |
|
|
|
///The color to use for disabled icons in the toolbar |
|
final Color? disabledIconColor; |
|
|
|
///The fill color to use for disabled icons in the toolbar |
|
final Color? disabledIconFillColor; |
|
}
|
|
|