Open mrgithub opened 10 months ago
I think it's calculating the width of all the starting frozen columns. I'm assuming you have more than one frozen column. To test you can unfreeze your other columns and only have your first column frozen.
@override
double get leftFrozenColumnsWidth {
double width = 0;
for (final column in refColumns) {
if (column.frozen.isStart) {
width += column.width;
}
}
return width;
}
Width calculation is sensitive, I don't think I will have time for it soon, but if someone creates a PR I will review & locally test it.
When I freeze the first column it is not visually frozen but the menu bar says it is when clicked. State manager says it's not frozen. No frozen columns are bigger than 200. I don't understand why it doesn't work.
First column looks like this:
onLoaded looks like this: