UEditorDialogs class abstract
Dialogs used by both editors.
Constructors
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
documentInfo(
{required String html}) → Future< void> -
Word / character / reading-time summary for
html. -
editLink(
{String? existing}) → Future< String?> - Prompts for a link href. Returns an empty string to remove the link.
-
findReplace(
) → Future< UFindReplaceRequest?> - Find & replace prompt.
-
htmlSource(
{required String html, bool editable = true}) → Future< String?> - Shows the raw HTML and lets the user edit it. Returns the edited HTML, or null when cancelled.
-
insertTable(
) → Future< UTableData?> - Asks for a row/column count and returns a fresh empty table.
-
pickColor(
{required BuildContext context, int? current, bool allowNone = true, String? title}) → Future< int?> -
A quick swatch grid plus a full colour picker. Returns the chosen ARGB
value, or
0when the user picks "none" (i.e. clear the colour).