pub fn selection_list_with<'a, T, Message, Theme, Renderer>(
options: &'a [T],
on_selected: impl Fn(usize, T) -> Message + 'static,
text_size: f32,
padding: impl Into<Padding>,
style: impl Fn(&Theme, Status) -> Style + 'a + Clone,
selected: Option<usize>,
font: Font,
) -> SelectionList<'a, T, Message, Theme, Renderer>Expand description
Shortcut helper to create a SelectionList Widget.