leptos_use

Function use_scroll_with_options

Source
pub fn use_scroll_with_options<El, T>(
    element: El,
    options: UseScrollOptions,
) -> UseScrollReturn<impl Fn(f64) + Clone, impl Fn(f64) + Clone, impl Fn() + Clone>
where El: Clone + Into<ElementMaybeSignal<T, Element>>, T: Into<Element> + Clone + 'static,
Expand description

Version of use_scroll with options. See use_scroll for how to use.