CustomExpandableTile class

A customizable expandable list tile widget with hover and selection states.

This widget provides an animated expandable tile that can contain child widgets. It supports hover effects, selection states, and custom colors for various states.

Inheritance

Constructors

CustomExpandableTile({Key? key, required String title, required IconData? icon, List<Widget>? children, bool? isExpanded = false, bool enableAnimation = true, bool? isSelected = false, Color? selectedColor, Color? hoverColor, VoidCallback? onTap})
const

Properties

children List<Widget>?
Optional list of widgets to display when the tile is expanded.
final
enableAnimation bool
Whether to animate the expansion/collapse transition. Defaults to true.
final
hashCode int
The hash code for this object.
no setterinherited
hoverColor Color?
The color to use when the tile is hovered. Defaults to black with 4% opacity if not specified.
final
icon IconData?
The icon to display at the leading edge of the tile.
final
isExpanded bool?
Whether the tile should start in an expanded state.
final
isSelected bool?
Whether the tile is in a selected state.
final
key Key?
Controls how one widget replaces another widget in the tree.
finalinherited
onTap VoidCallback?
Callback function when the tile is tapped. Only triggered if there are no children to expand.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
selectedColor Color?
The color to use when the tile is selected. Defaults to white with 20% opacity if not specified.
final
title String
The text to display as the tile's title.
final

Methods

createElement() StatefulElement
Creates a StatefulElement to manage this widget's location in the tree.
inherited
createState() CustomExpandableTileState
Creates the mutable state for this widget at a given location in the tree.
override
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