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.
21 lines
505 B
21 lines
505 B
import 'package:flutter/material.dart'; |
|
|
|
@immutable |
|
class QuillIconTheme { |
|
const QuillIconTheme({ |
|
this.padding, |
|
this.iconButtonSelectedStyle, |
|
this.iconButtonUnselectedStyle, |
|
// this.iconSelectedFillColor, |
|
// this.iconUnselectedFillColor, |
|
}); |
|
|
|
final ButtonStyle? iconButtonUnselectedStyle; |
|
final ButtonStyle? iconButtonSelectedStyle; |
|
|
|
// final Color? iconSelectedFillColor; |
|
// final Color? iconUnselectedFillColor; |
|
|
|
///The padding for icons |
|
final EdgeInsets? padding; |
|
}
|
|
|