Open vixez opened 4 months ago
Hi, @vixez Could you please open it again on the current repo. I will try to deploy it ASAP.
Hey @doonfrs, There was no code written for it, it was only a request if the author could add this functionality. But this was never implemented.
Hey @doonfrs, There was no code written for it, it was only a request if the author could add this functionality. But this was never implemented.
This is my approach:
double rowHeight = 75;
final _pageLimit = 25;
final columnHeight = 75;
final footerHeight = 75;
if (widget.fixedRowHeight != null) {
// Row height is fixed
rowHeight = widget.fixedRowHeight!;
} else {
// Row height is calculated
rowHeight = (((constraints.maxHeight) - (widget.columnHeight + widget.footerHeight)) / _pageLimit) - 1.2;
rowHeight = rowHeight.clamp(40, 75);
}
Hello,
I had opened this feature request a long time ago in the original repo, but it never got implemented. So I was hoping there is a chance of having it implemented it now with the new maintainers.
My original request was:
Kind regards