factory Text.styled(String content, Style style) { final spans = content.split('\n').map((s) => Line.styled(s, style)).toList(); return Text(spans, style: style); }