Tigran

Results 10 comments of Tigran

Did you add flutter_html_table as dependency? Yep, but table border not drawing, I add Styles ``` Html( data: html, shrinkWrap: true, style: { "table": Style( height: Height.auto(), width: Width.auto(), ),...

> By default, tables are not scrollable. You can use the extension API for this. See #1291 for an example. thanks a lot

> ``` > WrapperExtension( > tagsToWrap: {'table'}, > builder: (child) { > return SingleChildScrollView( > scrollDirection: Axis.horizontal, > child: child, > ); > } > ), > ``` > >...

also not scrolling ![image](https://github.com/Sub6Resources/flutter_html/assets/56785448/dd7d5d43-ab96-4acd-8ab3-f75408829523)

``` extensions: [ TagWrapExtension( tagsToWrap: {'table'}, builder: (child) { return SingleChildScrollView( scrollDirection: Axis.horizontal, child: child, ); }), const TableHtmlExtension(), ], ``` yeah, but in this case all contents broken, not...

thanks, with SingleChildScrollView child width its worked, but in older version with custom render its clear because when data is dynamic I can't detect width of table

> @ElDuderini any fix for showing the borders? I need it urgently all style ``` style: { "table": Style( height: Height.auto(), width: Width.auto(), ), "tr": Style( height: Height.auto(), width: Width.auto(),...

> I'm facing this same issue. Any new updates related to this? not yet, I set width 1000px but it's not solution

> @Tigran-Kosemyan hey i use Html widget but it not show > > tag, did you fix that? not yet, I set fixet size but it's not goog solution

``` Html( shrinkWrap: true, data: html, style: { "table": Style( height: Height.auto(), width: Width.auto(), ), "tr": Style( height: Height.auto(), width: Width.auto(), ), "th": Style( padding: HtmlPaddings.all(6), height: Height.auto(), border: const...