Box widgets

This way, widgets containing other widgets can be heterogenous. Wenever
a widget is expeted, *any* widget will work.
This commit is contained in:
Joscha 2022-07-12 21:09:38 +02:00
parent dea0384162
commit 8eda1ad97d
5 changed files with 5 additions and 5 deletions

View file

@ -308,7 +308,7 @@ impl<Id: Clone + Eq + Send> Widget for List<Id> {
Size::new(width as u16, height as u16)
}
async fn render(self, frame: &mut Frame, pos: Pos, size: Size) {
async fn render(self: Box<Self>, frame: &mut Frame, pos: Pos, size: Size) {
let mut guard = self.state.lock();
guard.stabilize(&self.rows, size.height.into());
for (i, row) in self.rows.into_iter().enumerate() {