S360fTableCard class
A customizable table-like widget that displays a list of data cards.
This widget creates a vertical list of S360fDataCard widgets, each built using the provided cardBuilder function. It's useful for displaying tabular data in a card format with consistent styling.
Example usage:
S360fTableCard(
itemCount: items.length,
cardBuilder: (index) => [
Text('Item ${index + 1}'), // title
Text('Status'), // left title
Text('Amount'), // right title
Text(items[index].status), // left value
Text('\$${items[index].amount}'), // right value
],
onTap: (index) {
// Handle card tap
print('Tapped card at index $index');
},
)
- Inheritance
-
- Object
- DiagnosticableTree
- Widget
- StatelessWidget
- S360fTableCard
- Available extensions
Constructors
- S360fTableCard({required int itemCount, required CardBuilder cardBuilder, required void onTap(int index), Key? key})
-
Creates a new S360fTableCard.
const
Properties
- cardBuilder → CardBuilder
-
A function that builds the content for each card.
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- itemCount → int
-
The number of cards to display in the table.
final
- key → Key?
-
Controls how one widget replaces another widget in the tree.
finalinherited
- onTap → void Function(int index)
-
Callback function called when a card is tapped.
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
animateOnActionTrigger(
AnimationInfo animationInfo, {List< Effect> ? effects, bool hasBeenTriggered = false}) → Widget -
Available on Widget, provided by the AnimatedWidgetExtension extension
-
animateOnPageLoad(
AnimationInfo animationInfo, {List< Effect> ? effects}) → Widget -
Available on Widget, provided by the AnimatedWidgetExtension extension
-
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