pub fn use_infinite_scroll_with_options<El, M, LFn, LFut>(
el: El,
on_load_more: LFn,
options: UseInfiniteScrollOptions,
) -> Signal<bool>where
El: IntoElementMaybeSignal<Element, M> + 'static,
LFn: Fn(ScrollState) -> LFut + Send + Sync + 'static,
LFut: Future<Output = ()>,
Expand description
Version of use_infinite_scroll
that takes a UseInfiniteScrollOptions
. See use_infinite_scroll
for how to use.