# ✨Yew-InfiniteFor.rs✨ [中文](https://github.com/1216892614/Yew-InfiniteFor.rs/blob/main/README-zh.md) `Yew-InfiniteFor.rs` is a list component that scrolls infinitely for Yew. # 🔥What's the highlight🔥 - It support function_component style! - It can smart change how many items render in once by view size. - It support row mode and column mode. - And, it's easy to use! # 📑How to use it?📑 Just 3 Simple steps, do like this: 1. Get `Yew-Canvas.rs`! ```toml #Cargo.toml [dependencies] yew="0.19" yew-infinite-list="..." ``` 1. Create a `request` Callback in the function_component! ```rust // This callback accept a Two-tuple: // - n: usize: the serial number of the item // - ret: Callback: Html setter of the item let request = Callback::from(|(n, ret): (usize, Callback)| { gloo::console::log!("Tag ", n, " rendered!"); ret.emit(html!(