Testfilter, Listenbreite

This commit is contained in:
2026-06-26 20:53:21 +02:00
parent a6bd718157
commit a66ed3e6cf
3 changed files with 199 additions and 40 deletions
@@ -34,7 +34,9 @@ class SummaryTable extends StatelessWidget {
controller: summaryHController,
scrollDirection: Axis.horizontal,
child: widgets.SizedBox(
width: tableWidth,
width: tableWidth < constraints.maxWidth
? constraints.maxWidth
: tableWidth,
height: constraints.maxHeight,
child: Column(
children: [
@@ -85,3 +87,4 @@ class SummaryTable extends StatelessWidget {
return tableWidth;
}
}