We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7d2c91 commit dc6db33Copy full SHA for dc6db33
table/lib/src/table.dart
@@ -511,7 +511,7 @@ class _RenderRawTableViewport extends RenderBox {
511
if (endOfColumn >= horizontalOffset.pixels + size.width - startOfStickyColumn && _lastVisibleColumn == null) {
512
_lastVisibleColumn = column;
513
}
514
- startOfColumn = start;
+ startOfColumn = endOfColumn;
515
} else {
516
startOfStickyColumn = start + band.extent;
517
@@ -552,7 +552,7 @@ class _RenderRawTableViewport extends RenderBox {
552
if (endOfRow >= verticalOffset.pixels + size.height - startOfStickyRow && _lastVisibleRow == null) {
553
_lastVisibleRow = row;
554
555
- startOfRow = start;
+ startOfRow = endOfRow;
556
557
startOfStickyRow = start + band.extent;
558
0 commit comments