pub trait TextStyleExt {
// Required methods
fn color(self, c: Color) -> View;
fn size(self, px: f32) -> View;
fn max_lines(self, n: usize) -> View;
fn single_line(self) -> View;
fn overflow_ellipsize(self) -> View;
fn overflow_clip(self) -> View;
fn overflow_visible(self) -> View;
}Expand description
Method styling for m3-like components