ratatui/examples/demo2
Eric Lunderberg c69ca47922
feat(table)!: Collect iterator of Row into Table (#774)
Any iterator whose item is convertible into `Row` can now be
collected into a `Table`.

Where previously, `Table::new` accepted `IntoIterator<Item = Row>`, it
now accepts `IntoIterator<Item: Into<Row>>`.

BREAKING CHANGE:
The compiler can no longer infer the element type of the container
passed to `Table::new()`.  For example, `Table::new(vec![], widths)`
will no longer compile, as the type of `vec![]` can no longer be
inferred.
2024-01-10 17:32:58 -08:00
..
tabs feat(table)!: Collect iterator of Row into Table (#774) 2024-01-10 17:32:58 -08:00
app.rs feat(examples): add demo2 example (#500) 2023-09-21 01:47:23 -07:00
colors.rs feat(examples): add demo2 example (#500) 2023-09-21 01:47:23 -07:00
main.rs feat(examples): add demo2 example (#500) 2023-09-21 01:47:23 -07:00
root.rs docs(examples): simplify docs using new layout methods (#731) 2024-01-05 07:45:14 -08:00
tabs.rs feat(examples): add demo2 example (#500) 2023-09-21 01:47:23 -07:00
term.rs feat(examples): add demo2 example (#500) 2023-09-21 01:47:23 -07:00
theme.rs feat(examples): add demo2 example (#500) 2023-09-21 01:47:23 -07:00