You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(tui-big-text)!: make BigText builder infallible
BigTextBuilder.build() no longer returns a Result. Instead it returns
the BigText widget directly. This change is made to simplify rendering
code which often otherwise doesn't have any error conditions.
BREAKING CHANGE: BigTextBuilder.build() no longer returns a Result.
Remove the `?` / `expect` / `unwrap` calls code which calls the build
method.
```diff
let big_text = BigText::builder()
.lines(vec![Line::from("SingleLine")])
- .build()?;
+ .build();
```
0 commit comments