Eric Kok

Results 233 comments of Eric Kok

I think you just want the parsed html child, right? That is given to the custom render function (`buildChildren`): ```dart tagMatcher("video"): CustomRender.widget( widget: (context, buildChildren) { // Do something with...

You mean the text itself is right-aligned, right, not the cells themselves? Sounds like a bug we need to solve.

Could you explain a bit more? In not sure what the issue is.

Sure. Flutter is in a very different state now and we should try to fix it, if it still is an issue. I don't have access to a Windows machine...

@dahef34 does that character work if you use plain Flutter widgets yourself? ```dart Text.rich( text: TextSpan( text: "Hello ", children: [ TextSpan(text: "↑", style: TextStyle(fontWeight: FontWeight.bold)), TextSpan(text: " from The...

Could you provide a small example (html) of what you are trying to achieve? Whilst the `vertical-align` css property is parsed, I think there is no code to do anything...

We might be able to support this by applying `ui.PlaceholderAlignment.middle` to the `WidgetSpan` `alignment`.

@alirezat66 Did you read the post at all? The dependencies are updated in 3.0.0-alpha releases or you can force a version of your dependencies.

Which version of flutter_html are you using? We made several changes/bugs/fixes...

Are you asking for the css property `min-width` support? See also #811 for a discussion on tables sizing.