EndlessStreamListView<T> class

An infinite loading list view that builds items added to the stream into a scrollable list.

Inheritance

Constructors

EndlessStreamListView({required void loadMore(), required dynamic itemBuilder(BuildContext context, {required int index, required T item, required int totalItems}), required Stream<List<T>> stream, Widget headerBuilder(BuildContext context)?, EndlessStateProperty<Widget>? headerBuilderState, Widget emptyBuilder(BuildContext context)?, EndlessStateProperty<Widget>? emptyBuilderState, Widget loadingBuilder(BuildContext context)?, EndlessStateProperty<Widget>? loadingBuilderState, Widget loadMoreBuilder(BuildContext context)?, EndlessStateProperty<Widget>? loadMoreBuilderState, Widget footerBuilder(BuildContext context)?, EndlessStateProperty<Widget>? footerBuilderState, EndlessStreamController<T>? controller, EdgeInsets? padding, double? extentAfterFactor = 0.4, bool? loadOnSubscribe = true, EdgeInsets itemPadding = EdgeInsets.zero, dynamic key})
const

Properties

controller EndlessStreamController<T>?
The stream controller used to perform actions on the list view such as loading more data or clearing the list.
final
emptyBuilder → (Widget Function(BuildContext context)?)
The builder function for the list view empty state.
final
emptyBuilderState EndlessStateProperty<Widget>?
The state property for the list view empty state.
final
extentAfterFactor double?
The fraction of the remaining quantity of content conceptually "below" the viewport in the scrollable relative to the maximum height of the scrollable region at which point loadMore should be called to load more data.
final
footerBuilder → (Widget Function(BuildContext context)?)
The builder function for the list view footer.
final
footerBuilderState EndlessStateProperty<Widget>?
The state property for the list view footer.
final
hashCode int
The hash code for this object.
no setterinherited
headerBuilder → (Widget Function(BuildContext context)?)
The builder function for the list view header.
final
headerBuilderState EndlessStateProperty<Widget>?
The state property for the list view header.
final
itemBuilder → dynamic Function(BuildContext context, {required int index, required T item, required int totalItems})
The builder function for the list view items.
final
itemPadding EdgeInsets
The padding in between each item in the list view.
final
key Key?
Controls how one widget replaces another widget in the tree.
finalinherited
loadingBuilder → (Widget Function(BuildContext context)?)
The builder function for the list view loading state.
final
loadingBuilderState EndlessStateProperty<Widget>?
The state property for the list view loading state.
final
loadMore → void Function()
A function which adds more items to the stream when the list view is scrolled to its threshold for loading more items determined by the extentAfterFactor.
final
loadMoreBuilder → (Widget Function(BuildContext context)?)
The builder function for the list view load more action widget.
final
loadMoreBuilderState EndlessStateProperty<Widget>?
The state property for the list view load more action widget.
final
loadOnSubscribe bool?
Whether to immediately request data from the stream when it is first subscribed to by calling the loadMore API.
final
padding EdgeInsets?
The padding around the scroll view.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
stream Stream<List<T>>
The stream of items that will be added to the list view.
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}) 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