[−][src]Trait iced_native::widget::container::Renderer
The renderer of a Container
.
Your renderer will need to implement this trait before being
able to use a Container
in your user interface.
Associated Types
Loading content...Required methods
fn draw<Message>(
&mut self,
defaults: &Self::Defaults,
bounds: Rectangle,
cursor_position: Point,
style: &Self::Style,
content: &Element<'_, Message, Self>,
content_layout: Layout<'_>
) -> Self::Output
&mut self,
defaults: &Self::Defaults,
bounds: Rectangle,
cursor_position: Point,
style: &Self::Style,
content: &Element<'_, Message, Self>,
content_layout: Layout<'_>
) -> Self::Output
Draws a Container
.