mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-12-23 22:12:34 +01:00
chore: Follow up img tag
This commit is contained in:
parent
3070b38d2e
commit
d88a1cd2d6
@ -239,21 +239,23 @@ class ImageExtension extends HtmlExtension {
|
||||
ExtensionContext context,
|
||||
Map<StyledElement, InlineSpan> Function() parseChildren,
|
||||
) {
|
||||
final mxcUrl = Uri.tryParse(context.attributes['href'] ?? '');
|
||||
final mxcUrl = Uri.tryParse(context.attributes['src'] ?? '');
|
||||
if (mxcUrl == null || mxcUrl.scheme != 'mxc') {
|
||||
return TextSpan(text: context.attributes['alt']);
|
||||
}
|
||||
|
||||
final width =
|
||||
double.tryParse(context.attributes['width'] ?? '') ?? defaultDimension;
|
||||
final height =
|
||||
double.tryParse(context.attributes['height'] ?? '') ?? defaultDimension;
|
||||
final width = double.tryParse(context.attributes['width'] ?? '');
|
||||
final height = double.tryParse(context.attributes['height'] ?? '');
|
||||
|
||||
return WidgetSpan(
|
||||
child: MxcImage(
|
||||
uri: mxcUrl,
|
||||
width: width,
|
||||
height: height,
|
||||
child: SizedBox(
|
||||
width: width ?? height ?? defaultDimension,
|
||||
height: height ?? width ?? defaultDimension,
|
||||
child: MxcImage(
|
||||
uri: mxcUrl,
|
||||
width: width ?? height ?? defaultDimension,
|
||||
height: height ?? width ?? defaultDimension,
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user