GlassDivider class

A glass-aesthetic separator for use between glass content sections.

GlassDivider renders a thin frosted hairline that matches iOS 26 separator styling. It is functionally similar to Divider but visually cohesive with the liquid glass design system.

Usage

Horizontal divider (default):

GlassCard(
  child: Column(
    children: [
      Text('Section A'),
      GlassDivider(),
      Text('Section B'),
    ],
  ),
)

Vertical divider:

Row(
  children: [
    Text('Left'),
    GlassDivider.vertical(),
    Text('Right'),
  ],
)

Custom thickness and indent:

GlassDivider(
  thickness: 0.5,
  indent: 16,
  endIndent: 16,
  color: Colors.white38,
)
Inheritance

Constructors

GlassDivider({Key? key, double thickness = 0.5, double indent = 0.0, double endIndent = 0.0, Color? color, double? height, Axis axis = Axis.horizontal})
Creates a horizontal glass divider.
const
GlassDivider.vertical({Key? key, double thickness = 0.5, double indent = 0.0, double endIndent = 0.0, Color? color, double? height})
Creates a vertical glass divider.
const

Properties

axis Axis
The axis along which the divider runs.
final
color Color?
The color of the divider.
final
endIndent double
Empty space trailing the divider on the right/bottom.
final
hashCode int
The hash code for this object.
no setterinherited
height double?
The total space occupied in the cross-axis direction.
final
indent double
Empty space leading the divider on the left/top.
final
key Key?
Controls how one widget replaces another widget in the tree.
finalinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
thickness double
The thickness of the divider line.
final

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