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.
27 lines
622 B
27 lines
622 B
import 'package:flutter/foundation.dart'; |
|
|
|
import 'base.dart'; |
|
|
|
class QuillToolbarIndentButtonExtraOptions |
|
extends QuillToolbarBaseButtonExtraOptions { |
|
const QuillToolbarIndentButtonExtraOptions({ |
|
required super.controller, |
|
required super.context, |
|
required super.onPressed, |
|
}); |
|
} |
|
|
|
@immutable |
|
class QuillToolbarIndentButtonOptions extends QuillToolbarBaseButtonOptions { |
|
const QuillToolbarIndentButtonOptions({ |
|
super.iconData, |
|
super.afterButtonPressed, |
|
super.childBuilder, |
|
super.controller, |
|
super.iconTheme, |
|
super.tooltip, |
|
this.iconSize, |
|
}); |
|
|
|
final double? iconSize; |
|
}
|
|
|