Eric Kok
Eric Kok
So he mentions two things about performance. The HTML is parsed only once. We should also do that. I remember seeing some issue about this, but have to look for...
I feel there is a lot of misconception on 'lazy loading' the html rendering or even why flutter_html is 'slow'. I can tell that the actual parsing of the html...
Do you mean a generic callback that is called when some but of html is tapped by the user, and which gives you said html? I don't really think this...
Was this working in earlier versions of flutter_html for you? I'll give this a debug/try as soon as I have some free time. Bit clogged up at work atm.
To support vertical-align styling beyond just the use case here, maybe we could use transform? I'd have to read up on what this css property does exactly on the web.
Oh yeah that's an issue then. Okay we have to take a good look. I saw your commits and they look promising, but I hope to find something beyond just...
@Krish-bhardwaj You are free to open a PR. Currently none of the golden tests are running though, I'm afraid.
This property is deprecated and not (officially) supported in html5. I am not sure if we should therefor support it in our package. On the other hand, we did decide...
This isn't really supported, but it would be nice if we did (via the audio custom render).
For as long as we use `Text.rich` to render our tree, I don't think we can implement this. I did find https://pub.dev/packages/float_column which is very interesting. I don't know about...