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.
14 lines
447 B
14 lines
447 B
import 'package:flutter_quill/flutter_quill.dart' |
|
show Attribute, AttributeScope; |
|
|
|
class MobileWidthAttribute extends Attribute<String?> { |
|
const MobileWidthAttribute(String? val) |
|
: super('mobileWidth', AttributeScope.ignore, val); |
|
} |
|
|
|
class MobileHeightAttribute extends Attribute<String?> { |
|
const MobileHeightAttribute(String? val) |
|
: super('mobileHeight', AttributeScope.ignore, val); |
|
} |
|
|
|
extension AttributeExt on Attribute {}
|
|
|