fix quoted message

This commit is contained in:
Salvatore Giordano
2021-04-30 15:00:52 +02:00
parent 55c5f2ff86
commit 1509739f24
@@ -218,8 +218,9 @@ class QuotedMessageWidget extends StatelessWidget {
attachmentBuilder = _defaultAttachmentBuilder[attachment.type];
if (attachmentBuilder == null) {
child = Offstage();
} else {
child = attachmentBuilder(context, attachment);
}
child = attachmentBuilder!(context, attachment);
}
child = AbsorbPointer(child: child);
return Transform(