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.
15 lines
476 B
15 lines
476 B
import 'package:flutter/material.dart'; |
|
|
|
class QuillDialogTheme { |
|
QuillDialogTheme( |
|
{this.labelTextStyle, this.inputTextStyle, this.dialogBackgroundColor}); |
|
|
|
///The text style to use for the label shown in the link-input dialog |
|
final TextStyle? labelTextStyle; |
|
|
|
///The text style to use for the input text shown in the link-input dialog |
|
final TextStyle? inputTextStyle; |
|
|
|
///The background color for the [LinkDialog()] |
|
final Color? dialogBackgroundColor; |
|
}
|
|
|