pub fn list<T, K, P>(
items: impl Fn() -> Vec<T> + 'static,
key_of: impl Fn(&T) -> K + 'static,
build_row: impl Fn(ItemSlot<T, K>) -> P + 'static,
) -> List<T, K>Expand description
Build a recycling list from a reactive items closure, a key function, and a row builder.