GlassRefractionSource class
Marks a widget as the refraction capture source for the nearest LiquidGlassScope.
Wraps child in a RepaintBoundary tagged with the scope's GlobalKey. Descendant GlassEffect widgets (the liquid pill inside GlassSegmentedControl, GlassTabBar, and GlassBottomBar) will sample this boundary every frame to produce real background refraction on Skia and Web.
On Impeller with GlassQuality.premium, this is not needed — the native
scene graph handles refraction without a captured boundary.
Typically used inside a LiquidGlassScope via the .stack() factory:
LiquidGlassScope.stack(
background: Image.asset('wallpaper.jpg', fit: BoxFit.cover),
content: Scaffold(...),
)
Or manually, for granular control:
GlassRefractionSource(
child: Image.asset('wallpaper.jpg'),
)
- Inheritance
-
- Object
- DiagnosticableTree
- Widget
- StatelessWidget
- GlassRefractionSource
Constructors
- GlassRefractionSource({required Widget child, Key? key})
-
const
Properties
Methods
-
build(
BuildContext context) → Widget -
Describes the part of the user interface represented by this widget.
override
-
createElement(
) → StatelessElement -
Creates a StatelessElement to manage this widget's location in the tree.
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
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited