LazyLoadMore

fun interface LazyLoadMore<T>

Interface that defines the callback for loading more items.

This callback is triggered when the scrolling position meets the conditions defined by the LazyLoadStrategy.

Parameters

T

The type of parameter that will be passed to the callback

Functions

Link copied to clipboard
abstract suspend operator fun invoke(param: T)

Invokes the load more operation with the specified parameter.