CoreCheckRowItem class

A selectable list row with a leading widget, a title (and optional subtitle), and a trailing checkbox.

Tapping anywhere on the row toggles selected via onChanged. The leading area defaults to a 24×24 CoreAvatar showing the first initial of title, but any widget can be supplied via leading. Designed for multi-select sheets such as an owner / assignee filter.

Inheritance

Constructors

CoreCheckRowItem({Key? key, required String title, required bool selected, required ValueChanged<bool> onChanged, String? subtitle, Widget? leading, Color? avatarBackgroundColor, Color? avatarTextColor, TextStyle? avatarTextStyle, String? semanticLabel})
Creates a selectable checkbox row.
const

Properties

avatarBackgroundColor Color?
Background color for the default leading avatar.
final
avatarTextColor Color?
Initial-text color for the default leading avatar.
final
avatarTextStyle TextStyle?
Full override of the default leading avatar's initial text style.
final
hashCode int
The hash code for this object.
no setterinherited
key Key?
Controls how one widget replaces another widget in the tree.
finalinherited
leading Widget?
Leading widget shown before the text.
final
onChanged ValueChanged<bool>
Called with the toggled value when the row or checkbox is activated.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
selected bool
Whether the row is currently checked.
final
semanticLabel String?
Accessibility label for the row. Defaults to title.
final
subtitle String?
Optional secondary line shown below title (e.g. an email address).
final
title String
Primary text for the row (e.g. an owner name).
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

Static Methods

initialFor(String name) String
Derives the displayed initial: first character of the first whitespace-delimited token, uppercased. Blank names yield an empty string.