ratatui/src
Josh McKinney 5d410c6895
feat(line): implement Widget for Line (#715)
This allows us to use Line as a child of other widgets, and to use
Line::render() to render it rather than calling buffer.set_line().

```rust
frame.render_widget(Line::raw("Hello, world!"), area);
// or
Line::raw("Hello, world!").render(frame, area);
```
2023-12-27 20:30:47 +01:00
..
backend feat: implement From trait for termion to Style related structs (#692) 2023-12-16 20:48:44 +01:00
layout fix(Rect): fix underflow in the Rect::intersection method (#678) 2023-12-09 06:27:41 -08:00
style feat(color): use the FromStr implementation for deserialization (#705) 2023-12-23 19:38:53 +01:00
text feat(line): implement Widget for Line (#715) 2023-12-27 20:30:47 +01:00
widgets fix(table): render missing widths as equal (#710) 2023-12-26 15:06:44 +01:00
backend.rs chore(rustfmt): enable format_code_in_doc_comments (#695) 2023-12-16 13:01:07 +01:00
buffer.rs fix(buffer): don't panic in set_style (#714) 2023-12-27 10:19:30 +01:00
layout.rs chore(rustfmt): enable format_code_in_doc_comments (#695) 2023-12-16 13:01:07 +01:00
lib.rs chore(rustfmt): enable format_code_in_doc_comments (#695) 2023-12-16 13:01:07 +01:00
prelude.rs docs(terminal): add docs for terminal module (#486) 2023-09-11 18:39:15 -07:00
style.rs chore(rustfmt): enable format_code_in_doc_comments (#695) 2023-12-16 13:01:07 +01:00
symbols.rs docs(chart): document chart module (#696) 2023-12-16 11:41:12 -08:00
terminal.rs docs(frame): add docs about resize events (#697) 2023-12-17 01:36:25 -08:00
text.rs feat(line): implement Widget for Line (#715) 2023-12-27 20:30:47 +01:00
title.rs chore(rustfmt): enable format_code_in_doc_comments (#695) 2023-12-16 13:01:07 +01:00
widgets.rs chore(rustfmt): enable format_code_in_doc_comments (#695) 2023-12-16 13:01:07 +01:00