-
-
Notifications
You must be signed in to change notification settings - Fork 901
Fix inline rendering of (text) links #499
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix inline rendering of (text) links #499
Conversation
If non-text elements are used inside the <a> we still need widget spans and if they are long you can still have clunky wrapping, but I'm not even sure that is a bug per se. Fixes Sub6Resources#388, Sub6Resources#488 and Sub6Resources#495
Could you reiterate the problem in that ticket? |
If an image is a child of a link, the there is still |
…ve the text style applied to it, not other content such as images
Fixed that too. The style is now only applied to the texts inside of the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. However, there are merge conflicts, so that just needs to be fixed and then I'll merge
# Conflicts: # example/lib/main.dart
Done. |
Is it fixed? How to use it, if currently, I am on a master branch? |
Yes this should be fixed on master. |
I think this MR has added a new bug.: #515 |
@amanokerim Can you provide the exact code/HTML you are using to create that output? |
@erickok
Flutter side:
|
Thank you very much for all. Good luck! |
If non-text elements are used inside the we still need widget spans and if they are long you can still have clunky wrapping, but I'm not even sure that is a bug per se.
Fixes #388, #488 and #495