Eric Kok

Results 233 comments of Eric Kok

So is there still a bug or not (on the latest flutter_html, version 2.2.1)?

Yes I can reproduce the crash with: ```html Subscribe to calendar Hello world ```

A workaround right now is to apply the list style type on the `` directly (or even use ``. ```html Subscribe to calendar Hello world ``` But yes we need...

Hmm sounds like a specific oddity of Flutter's `TextField`, which doesn't 'properly' support dry layouting, which our table support (via flutter_layout_grid) needs. See https://github.com/flutter/flutter/issues/71687 for the bug details and a...

I'm sorry I don't understand what you mean.

I see. We have to check if the css parsing library supports this but even then it might be tricky to support this, as we'd have to count the cells...

Yes, flutter_html should follow the w3c standards here. I think what you mean is that it shouldn't apply any styling (underline) here?

I don't think a List instead of Container is a very viable solution, as that would only work (or be beneficial for) cases where a clean vertical split between parts...

Lots to consider here indeed. Indeed if your HTML is vertically separable, then it might be very beneficial to split it up and render (using slivers in a `CustomScrollView`) this...

Certainly, if we get this to work properly (either via a ListBuilder or some other lazy method) it would be a great performance improvement! I would love for this to...