pub fn list_presenter_from_iter<D, L>(
list: impl IntoVar<L>,
item_fn: impl IntoVar<WidgetFn<D>>,
) -> UiNodeExpand description
Node list that presents list using item_fn for each list item.
The node’s children are regenerated for each change in list, if possible prefer using ObservableVec with list_presenter.
See also the present_list_from_iter method that can be called on the list variable.