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(),
), |
0 replies
|
does not work... here my code: I only se "my Link: " ... the link is not showing |
2 replies
|
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. |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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?
All reactions