github fdehau/tui-rs v0.7.0

latest releases: v0.19.0, v0.18.0, v0.17.0...
4 years ago

Changed

  • Use Constraint instead of integers to specify the widths of the Table
    widget's columns. This will allow more responsive tables.
Table::new(header, row)
  .widths(&[15, 15, 10])
  .render(f, chunk);

becomes:

Table::new(header, row)
  .widths(&[
    Constraint::Length(15),
    Constraint::Length(15),
    Constraint::Length(10),
  ])
  .render(f, chunk);
  • Bump crossterm to 0.13.
  • Use Github Actions for CI (Travis and Azure Pipelines integrations have been deleted).

Added

  • Add support for horizontal and vertical margins in Layout.

Don't miss a new tui-rs release

NewReleases is sending notifications on new releases.