logo
pub trait FactoryListView<Widget> where
    Self: FactoryView<Widget>, 
{ fn insert_after(&self, widget: &Widget, other: &Self::Root) -> Self::Root; fn push_front(&self, widget: &Widget) -> Self::Root; }
Expand description

Extends FactoryView for containers that work similar to lists. This means that the container can insert widgets before and after other widgets.

Required methods

Insert a widget after another widget.

Add an widget to the front.

Implementations on Foreign Types

Implementors