pub fn context_drawer<'a, Message: Clone + 'static, Content, Drawer>(
title: Option<Cow<'a, str>>,
actions: Option<Element<'a, Message>>,
header: Option<Element<'a, Message>>,
footer: Option<Element<'a, Message>>,
on_close: Message,
content: Content,
drawer: Drawer,
max_width: f32,
) -> ContextDrawer<'a, Message>Expand description
An overlayed widget that attaches a toggleable context drawer to the view.