Josh McKinney
Josh McKinney
This is sort of intentional (though badly documented as to why). We think these docs need a rewrite for a variety of reasons, but haven't put in the time to...
Get this man a blog!!! :D (serious suggestion as this is a great write up and deserves to have a URL where people can point at permanently) Solving the underlying...
>has anyone made any attempt at getting ratatui to work on UEFI already? Not as far as I am aware. No matches on the discord. Maybe check https://github.com/search?q=ratatui+uefi&type=code
A quick follow up. @reubeno created a ratatui-uefi backend for Ratatui, skipping crossterm. - https://github.com/reubeno/tui-uefi - via https://discord.com/channels/1319729850285555844/1335895460753182740/1360143136537444522 I think this is worth closing out as unlikely to be implemented...
Historical context. Text didn't have a style field until 0.26 or so - the styles were only on the lines. This has a pretty large blast radius ([1.5k results for...
Rethinking this a bit, the rationale for having `style()` comes from: ```rust let item = ListItem::new("foo").red(); ``` While you could write that as: ``` let item = ListItem::new(Text::raw("foo").style(Color::Red)); // or...
Taking a deeper look at the source, we can't do that. The style on the list item affects the entire area of the item, including any highlight symbol. The style...
See https://github.com/ratatui/ratatui/pull/1884 for some added tests to show the way that styles combine here. I'm not sure if you saw my comment before adding the PR. I'd suggest that the...
> I am going to delete my fork, so read this(#787). This issue related how to deal with the issue of an illegal bytes into the input. I may not...