CircleListChildBuilderDelegate class
A delegate that supplies children for CircleListScrollView using a builder callback.
CircleListScrollView lazily constructs its children to avoid creating more children than are visible through the Viewport. This delegate provides children using an IndexedWidgetBuilder callback, so that the children do not have to be built until they are displayed.
- Inheritance
-
- Object
- CircleListChildDelegate
- CircleListChildBuilderDelegate
Constructors
- CircleListChildBuilderDelegate({required IndexedWidgetBuilder builder, int? childCount})
- Constructs the delegate from a builder callback.
Properties
- builder → IndexedWidgetBuilder
-
Called lazily to build children.
final
- childCount → int?
-
If non-null, childCount is the maximum number of children that can be
provided, and children are available from 0 to childCount - 1.
final
- estimatedChildCount → int?
-
Returns an estimate of the number of children this delegate will build.
no setteroverride
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
build(
BuildContext context, int index) → Widget? -
Return the child at the given index. If the child at the given
index does not exist, return null.
override
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
shouldRebuild(
covariant CircleListChildBuilderDelegate oldDelegate) → bool -
Called to check whether this and the old delegate are actually 'different',
so that the caller can decide to rebuild or not.
override
-
toString(
) → String -
A string representation of this object.
inherited
-
trueIndexOf(
int index) → int -
Returns the true index for a child built at a given index. Defaults to
the given index, however if the delegate is ListWheelChildLoopingListDelegate,
this value is the index of the true element that the delegate is looping to.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited