Pretty-printing widget for Rust values.
Renders a value’s Debug representation with optional wrapping and
configurable formatting into a Frame.
§Example
use ftui_widgets::pretty::Pretty;
let data = vec![1, 2, 3];
let widget = Pretty::new(&data);
assert!(!widget.formatted_text().is_empty());