yew-virtualized

A VirtualList yew component that renders only the visible part of a scrollable list.

This component uses the [ResizeObserver] API to allow dynamically sized items in the list.

Quick Example

```toml

Cargo.toml

yew-virtualized = "0.1.0" ```

```rust fn items(idx: usize) -> Html { html! { format!("Item #{idx}") } }

[function_component(App)]

fn app() -> Html { html! { } } ```