Add breadcrumbs to grid view
This commit is contained in:
parent
9a291f60f2
commit
1228718b10
1 changed files with 6 additions and 3 deletions
|
|
@ -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> {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue