-
-
Notifications
You must be signed in to change notification settings - Fork 889
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
problem rendering <li> with lots of text content #33
Comments
Thanks for the report. This is actually the same issue reported in #17. It's just a different manifestation of the same problem. I'm still looking into a fix for it. Haven't found a solution yet, though. Closing as a duplicate for now, if you have any ideas or further comments, feel free to comment on #17. |
I fixed this problem with Row and Expanded: |
@Kapranov98 thanks for the help. may i ask how you implemented _parseNodeList? Your code is located in the customRender callback? |
@smiLLe No, I have implemented the source code of the plugin in my project. You need a few more customization options for your needs. Changes made to the html_parser.dart file. ;) |
@Kapranov98 ahhh ok got it, thanks :) So this is probably something @Sub6Resources should have a look into? |
@Kapranov98 I'd love a pull request so I can implement these changes into the plugin if you would be willing. |
Hi :)
whenever there is a lot of content in an li that requires a line break, the li bullet will not stay in line but above the content.
See screenshot. The bullet in the first line should be in line with the first 'test'
Just take this code and try it yourself. Add as many content as needed into the first li to force an linebreak
<ul><li>test test test test test test test test test test test test test test test test test test test test test </li><li>Test2</li></ul>
Thanks :)
The text was updated successfully, but these errors were encountered: