From 200f1031de71605589ee56358400d3838f76f5da Mon Sep 17 00:00:00 2001 From: Kyllian Warmerdam <32609460+InstantlyMoist@users.noreply.github.com> Date: Thu, 11 Apr 2024 10:37:55 +0200 Subject: [PATCH] Fixed shrinkWrap property on table extension --- packages/flutter_html_table/lib/flutter_html_table.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/flutter_html_table/lib/flutter_html_table.dart b/packages/flutter_html_table/lib/flutter_html_table.dart index f7e928c6c7..8d89b59532 100644 --- a/packages/flutter_html_table/lib/flutter_html_table.dart +++ b/packages/flutter_html_table/lib/flutter_html_table.dart @@ -106,6 +106,7 @@ class TableHtmlExtension extends HtmlExtension { if (context.elementName == "table") { return WidgetSpan( child: CssBoxWidget( + shrinkWrap: true, style: context.styledElement!.style, child: LayoutBuilder( builder: (_, constraints) {