Add breadcrumbs to grid view

This commit is contained in:
Jeremy Soller 2024-01-29 11:22:21 -07:00
parent 9a291f60f2
commit 1228718b10
No known key found for this signature in database
GPG key ID: D02FD439211AF56F

View file

@ -767,9 +767,12 @@ impl Tab {
return self.empty_view(hidden > 0, core);
}
}
widget::scrollable(widget::flex_row(children))
.width(Length::Fill)
.into()
widget::scrollable(widget::column::with_children(vec![
self.breadcrumbs_view(core),
widget::flex_row(children).into(),
]))
.width(Length::Fill)
.into()
}
pub fn list_view(&self, core: &Core) -> Element<Message> {