keep style when creating embedded element (#1232)

pull/1233/head
Firas Abd Alrahman 2 years ago committed by GitHub
parent a58ca0abbb
commit 6c6217343d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      lib/src/widgets/text_line.dart

@ -193,7 +193,8 @@ class _TextLineState extends State<TextLine> {
}
// Creates correct node for custom embed
if (child.value.type == BlockEmbed.customType) {
child = Embed(CustomBlockEmbed.fromJsonString(child.value.data));
child = Embed(CustomBlockEmbed.fromJsonString(child.value.data))
..applyStyle(child.style);
}
final embedBuilder = widget.embedBuilder(child);
final embedWidget = EmbedProxy(

Loading…
Cancel
Save