InheritedLiquidGlass class

A custom inherited widget that provides LiquidGlassSettings to descendants.

This is used by AdaptiveLiquidGlassLayer to ensure that settings are passed down to children even when the underlying renderer is using a fallback implementation (like LightweightLiquidGlass on Skia/Web) that might not have its own inherited widget provider exposed.

Inheritance

Constructors

InheritedLiquidGlass({required LiquidGlassSettings settings, GlassQuality quality = GlassQuality.standard, bool isBlurProvidedByAncestor = false, bool avoidsRefraction = false, required Widget child, Key? key})
Creates an inherited widget that holds LiquidGlassSettings.
const

Properties

avoidsRefraction bool
Whether children should avoid high-fidelity refraction. Set to true by containers like GlassCard to prevent refraction artifacts when glass is nested within glass.
final
child Widget
The widget below this widget in the tree.
finalinherited
hashCode int
The hash code for this object.
no setterinherited
isBlurProvidedByAncestor bool
Whether a parent layer is already providing the backdrop blur. Used for performance optimization to avoid redundant BackdropFilters.
final
key Key?
Controls how one widget replaces another widget in the tree.
finalinherited
quality GlassQuality
The rendering quality to share with the subtree.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
settings LiquidGlassSettings
The glass settings to share with the subtree.
final

Methods

createElement() InheritedElement
Inflates this configuration to a concrete instance.
inherited
debugDescribeChildren() List<DiagnosticsNode>
Returns a list of DiagnosticsNode objects describing this node's children.
inherited
debugFillProperties(DiagnosticPropertiesBuilder properties) → void
Add additional properties associated with the node.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toDiagnosticsNode({String? name, DiagnosticsTreeStyle? style}) DiagnosticsNode
Returns a debug representation of the object that is used by debugging tools and by DiagnosticsNode.toStringDeep.
inherited
toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) String
A string representation of this object.
inherited
toStringDeep({String prefixLineOne = '', String? prefixOtherLines, DiagnosticLevel minLevel = DiagnosticLevel.debug, int wrapWidth = 65}) String
Returns a string representation of this node and its descendants.
inherited
toStringShallow({String joiner = ', ', DiagnosticLevel minLevel = DiagnosticLevel.debug}) String
Returns a one-line detailed description of the object.
inherited
toStringShort() String
A short, textual description of this widget.
inherited
updateShouldNotify(covariant InheritedLiquidGlass oldWidget) bool
Whether the framework should notify widgets that inherit from this widget.
override

Operators

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

Static Methods

of(BuildContext context) LiquidGlassSettings?
Retrieves the nearest LiquidGlassSettings from the ancestor tree.
ofOrDefault(BuildContext context) LiquidGlassSettings
Retrieves the LiquidGlassSettings from the ancestor tree, falling back to LiquidGlassWidgets.globalSettings or a default instance if none is found.