带有 StickyHeadersTable 的 Flutter Web 应用程序既不垂直也不水平滚动

问题描述 投票:0回答:1

这是我的代码: 孩子:大小框( 宽度:MediaQuery.of(context).size.width * 0.95, 高度:MediaQuery.of(context).size.height * 0.6, 子项:StickyHeadersTable( columnsLength: numeroColanne, rowsLength:listImpiantiPerGriglia.length, columnsTitleBuilder: (i) { 返回容器( 对齐方式: const 对齐方式(0, 0), 身高:阿尔特扎塞拉, 宽度:大塞拉, 孩子:文本( attivita.titoliColonne[i], ), ); }, rowsTitleBuilder: (i) { 返回填充( 填充:const EdgeInsets.all(8.0), 孩子:文本( tioliRigheRagsoc[i], ), ); }, cellDimensions: CellDimensions.fixed( contentCellWidth: LargeghezzaCella, contentCellHeight:altezzaCella, StickyLegendWidth:大图例, StickyLegendHeight: altezzaCella), contentCellBuilder: (i, j) { 返回容器( 对齐方式: const 对齐方式(0, 0), 身高:阿尔特扎塞拉, 宽度:大塞拉, 孩子:文本( matriceCelle[j][i], ), ); }, ), ),

flutter scroll
1个回答
0
投票

我解决了我的问题。我的错误是按照屏幕尺寸的比例计算altezzaCella 和larghezzaCella。

© www.soinside.com 2019 - 2024. All rights reserved.