fix: code cannot be wrap

I think it is a wrong fix for link, '\n' should not be replaceAll,
so I think this should be reverted
pull/464/head
ShootingStarDragons 2 years ago
parent bc73a5da95
commit f0cc00c04a

@ -49,8 +49,7 @@ class HtmlMessage extends StatelessWidget {
final linkifiedRenderHtml = linkify( final linkifiedRenderHtml = linkify(
renderHtml, renderHtml,
options: const LinkifyOptions(humanize: false), options: const LinkifyOptions(humanize: false),
) ).map(
.map(
(element) { (element) {
if (element is! UrlElement || if (element is! UrlElement ||
element.text.contains('<') || element.text.contains('<') ||
@ -60,9 +59,7 @@ class HtmlMessage extends StatelessWidget {
} }
return '<a href="${element.url}">${element.text}</a>'; return '<a href="${element.url}">${element.text}</a>';
}, },
) ).join('');
.join('')
.replaceAll('\n', '');
final linkColor = textColor.withAlpha(150); final linkColor = textColor.withAlpha(150);

Loading…
Cancel
Save