OptionEntryTile class
A reusable, tappable option row used in settings/profile style lists.
The tile renders:
- A leading icon (icon or svgIconAsset)
- A title (title) and optional description (description)
- A trailing action icon, chosen from actionIcon or overridden by customActionIcon
customActionIcon takes precedence over actionIcon when both are set.
Example:
OptionEntryTile(
icon: Icons.person_outline_rounded,
title: 'Profile',
description: 'View and edit your profile',
onTap: () => context.push('/profile'),
);
OptionEntryTile(
svgIconAsset: 'assets/settings.svg',
title: 'Settings',
onTap: openSettings,
);
OptionEntryTile(
icon: Icons.logout,
title: 'Sign out',
actionIcon: OptionEntryTileActionIcon.exitToApp,
onTap: onLogout,
);
OptionEntryTile(
icon: Icons.link,
title: 'Open website',
customActionIcon: const Icon(Icons.open_in_new),
onTap: openWebsite,
);
- Inheritance
-
- Object
- DiagnosticableTree
- Widget
- StatelessWidget
- OptionEntryTile
Constructors
- OptionEntryTile({Key? key, IconData? icon = Icons.adjust_outlined, String? svgIconAsset, required String title, String? description, VoidCallback? onTap, OptionEntryTileActionIcon actionIcon = OptionEntryTileActionIcon.navigateNext, Icon? customActionIcon})
-
Creates an OptionEntryTile.
const
Properties
- actionIcon → OptionEntryTileActionIcon
-
Built-in trailing icon selection used when customActionIcon is null.
final
- customActionIcon → Icon?
-
Custom trailing icon widget.
final
- description → String?
-
Optional secondary text shown below title.
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- icon → IconData?
-
Leading icon shown at the start of the row.
final
- key → Key?
-
Controls how one widget replaces another widget in the tree.
finalinherited
- onTap → VoidCallback?
-
Called when the tile is tapped.
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- svgIconAsset → String?
-
Leading SVG icon asset path shown at the start of the row.
final
- title → String
-
Primary label shown in a prominent text style.
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