Eric Kok

Results 233 comments of Eric Kok

I took a deeper look at this, which is why it took a while to respond. As it stands, this isn't so easy to achieve. If you use percentage-based column...

Did you try to use escape characters for the < sign?

I _think_ we can do based support (with a fixed value) fairly easily, but the percentage-bases support will already be tricky to implement in Flutter.

I'm gonna be honest and say that I have little tono experience with RTL text on Flutter, but I absolutely agree that we should cater as much as possible for...

This isn't so easy to achieve I suspect but I haven't had time to take a deep dive into it due to time limitations on my side.

Unfortunaly over time we seem to have used different formatting standards (including line width) and I fear any application of a since format now would cause code changes. We should...

So what you request is that we allow you to supply all these potential parameters into the video tag render?

I think now that (in 3.0) it is modularized we could add these as (optional) parameter to the videorender() method.

Try this: ```dart customRender: { "table": (context, child) { return SingleChildScrollView( scrollDirection: Axis.horizontal, child: (context.tree as TableLayoutElement).toWidget(context), ); }, }, ```