ImageEditorDesignModeE enum

Enum representing design modes for an image editor.

The ImageEditorDesignMode enum defines two design modes: Material and Cupertino. These design modes determine the visual style and user interface elements used in an image editor.

  • material: Represents the Material Design style, which is a modern design language developed by Google. It typically includes bold colors and shadows.
  • cupertino: Represents the Cupertino Design style, which is Apple's design language known for its clean and minimalistic appearance with rounded elements.

Example Usage:

// Use the Material design mode for the image editor.
ImageEditorDesignMode designMode = ImageEditorDesignMode.material;

// Use the Cupertino design mode for the image editor.
ImageEditorDesignMode designMode = ImageEditorDesignMode.cupertino;
Inheritance

Constructors

ImageEditorDesignModeE()
const

Values

material → const ImageEditorDesignModeE

Represents the Material Design style.

cupertino → const ImageEditorDesignModeE

Represents the Cupertino Design style.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
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

Constants

values → const List<ImageEditorDesignModeE>
A constant List of the values in this enum, in order of their declaration.