Replies: 3 comments 3 replies
-
This change was made for 2 reasons:
To convert the list of spans into a widget child, you can use the following code: ContainerSpan(
newContext: context,
style: context.tree.style,
shrinkWrap: context.parser.shrinkWrap,
children: child(),
), |
Beta Was this translation helpful? Give feedback.
-
does not work... here my code:
I only se "my Link: " ... the link is not showing |
Beta Was this translation helpful? Give feedback.
-
I have the same issue with the 3.x version. In version 2.x I use the customer renderer to render lists or images in a custom way. How can I do this in version 3.x of your library. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I wrap my original anchor tag widget from default renderer into an other widget.
I don't understand how to retrieve the child (default rendered widget) from the old version in the new version:
my code:
Before 3.0.x child was a Widget. Now its a function that returns me a list of InlineSpans ... InlineSpans are not compatible to Widgets. So how can i get my child widget here?
Beta Was this translation helpful? Give feedback.
All reactions