Closed f1dz closed 2 years ago
I'm on holiday and not near a computer right now but check the library example app code, it has a scrollable table.
tagMatcher("table"): CustomRender.widget(widget: (context, buildChildren) => SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: tableRender.call().widget!.call(context, buildChildren),
)),
Thanks a lot @erickok You bring me the idea. Its works now! Cheers 🍻
In version 2, I can add scrollbar as follows:
And in version 3 I believed should be like this:
The problem is that in version 3 there is no
TableLayoutElement
, is there any way to resolve this issue? Or maybe how to convert atree
into a widget?Thank you Ofid