Eric Kok
Eric Kok
Without looking into this, I guess flutter_layout_grid doesn't support nested tables. I'm not sure why the necessarily is so, though.
Hmm actually flutter_layout_grid support it just fine. I am not sure where you got this error, but in my test the only reason this doesn't work (on master branch) is...
Yes, it is used to determine if the table is in a bounded layout. Because if it is in an unbounded layout we cant support percentage based column sizes and...
Hmm maybe. The problem we have here is that to know if we can use percentage-based column widths, I need to know ifd 'we' are in a horizontally bounded container...
Yes, I agree. And I am not feeling very at my place yet there. I should give it a try though.
Sorry, not at the moment. I tried again yesterday and couldn't come up with a solution yet. Will have to read more about flutter and come back to this.
Do you have a small example html that we can use to reproduce this issue? By default content in tables should break up in lines, but not in syllables.
Flutter is a bit notorious for not handling this well and not really supporting the text breakup you might expect or at least hope for. See also https://github.com/flutter/flutter/issues/18761 for a...
Seems to be working in our example app. Make sure to use a 'constant' `anchorKey`. ``` new Scaffold( floatingActionButton: FloatingActionButton( child: Icon(Icons.arrow_downward), onPressed: () { final anchorContext = AnchorKey.forId(staticKey, "bottom")?.currentContext;...
Ah yeah it might currently only work on block elements. Let me see if that is something I can fix.