WindowTheme class

Theme configuration for window components.

Provides styling options for window elements including title bar height and resize border thickness. Used to customize the visual appearance of window components within the application.

Example:

WindowTheme(
  titleBarHeight: 32.0,
  resizeThickness: 4.0,
)

Constructors

WindowTheme.new({double? titleBarHeight, double? resizeThickness})
const

Properties

hashCode int
The hash code for this object.
no setteroverride
resizeThickness double?
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
titleBarHeight double?
final

Methods

copyWith({ValueGetter<double?>? titleBarHeight, ValueGetter<double?>? resizeThickness}) WindowTheme
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
override