pass linestyle to embeded block (#1230)

pull/1232/head
Firas Abd Alrahman 2 years ago committed by GitHub
parent 99d60bc1b7
commit f56d5c36dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      lib/src/widgets/embeds.dart
  2. 12
      lib/src/widgets/text_line.dart

@ -21,6 +21,7 @@ abstract class EmbedBuilder {
leaf.Embed node,
bool readOnly,
bool inline,
TextStyle textStyle,
);
}

@ -148,15 +148,10 @@ class _TextLineState extends State<TextLine> {
final embedBuilder = widget.embedBuilder(embed);
if (embedBuilder.expanded) {
// Creates correct node for custom embed
final lineStyle = _getLineStyle(widget.styles);
return EmbedProxy(
embedBuilder.build(
context,
widget.controller,
embed,
widget.readOnly,
false,
),
embedBuilder.build(context, widget.controller, embed, widget.readOnly,
false, lineStyle),
);
}
}
@ -208,6 +203,7 @@ class _TextLineState extends State<TextLine> {
child,
widget.readOnly,
true,
lineStyle,
),
);
final embed = embedBuilder.buildWidgetSpan(embedWidget);

Loading…
Cancel
Save