EndlessPaginationGridView<T> class

An infinite loading grid view that builds items loaded from the loadMore API into a scrollable grid.

Inheritance

Constructors

EndlessPaginationGridView({required Future<List<T>> loadMore(int pageIndex), required Widget itemBuilder(BuildContext context, {required int index, required T item, required int totalItems}), required EndlessPaginationDelegate paginationDelegate, required SliverGridDelegate gridDelegate, 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, EndlessPaginationController<T>? controller, EdgeInsets? padding, bool? initialLoad = true, double? extentAfterFactor = 0.4, dynamic key})
const

Properties

controller EndlessPaginationController<T>?
The stream controller used to perform actions on the grid view such as loading more data or clearing the grid.
final
emptyBuilder → (Widget Function(BuildContext context)?)
The builder function for the grid view empty state.
final
emptyBuilderState EndlessStateProperty<Widget>?
The state property for the grid 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 grid view footer.
final
footerBuilderState EndlessStateProperty<Widget>?
The state property for the grid view footer.
final
gridDelegate SliverGridDelegate
Controls the layout of tiles in a grid. See GridView.gridDelegate.
final
hashCode int
The hash code for this object.
no setterinherited
headerBuilder → (Widget Function(BuildContext context)?)
The builder function for the grid view header.
final
headerBuilderState EndlessStateProperty<Widget>?
The state property for the grid view header.
final
initialLoad bool?
Whether to immediately request data from the stream when it is first subscribed to by calling the loadMore API.
final
itemBuilder Widget Function(BuildContext context, {required int index, required T item, required int totalItems})
The builder function for the grid view items.
final
key Key?
Controls how one widget replaces another widget in the tree.
finalinherited
loadingBuilder → (Widget Function(BuildContext context)?)
The builder function for the grid view loading state.
final
loadingBuilderState EndlessStateProperty<Widget>?
The state property for the grid view loading state.
final
loadMore Future<List<T>> Function(int pageIndex)
A function which returns the additional items to add to the grid view when it is scrolled to its threshold for loading more items determined by the extentAfterFactor.
final
loadMoreBuilder → (Widget Function(BuildContext context)?)
The builder function for the grid view load more action widget.
final
loadMoreBuilderState EndlessStateProperty<Widget>?
The state property for the grid view load more action widget.
final
padding EdgeInsets?
The padding around the scroll view.
final
paginationDelegate EndlessPaginationDelegate
The delegate that specifies the pagination requirements for the grid view such as the maximum number of pages to load and the page size.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

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