Trait nannou::ui::prelude::widget::list::ItemSize[][src]

pub trait ItemSize: Clone + Copy {
    fn update_list<D>(
        List<D, Self>,
        UpdateArgs<'_, '_, '_, '_, List<D, Self>>
    ) -> <List<D, Self> as Widget>::Event
    where
        D: Direction
;
fn size_item<W, D>(&self, widget: W, breadth: f64) -> W
    where
        D: Direction,
        W: Widget
; }
Expand description

The way in which the List’s items are sized. E.g. Fired or Dynamic.

Required methods

Update the List widget.

Set the size for the given item widget and return it.

Implementors