opt remove sc

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-09-03 20:00:43 +08:00
parent 04830c7789
commit 28a58ade84
5 changed files with 24 additions and 14 deletions

View File

@@ -269,6 +269,10 @@ class _CustomGridViewDelegate extends MultiChildLayoutDelegate {
@override
bool shouldRelayout(_CustomGridViewDelegate oldDelegate) {
return space != oldDelegate.space || itemCount != oldDelegate.itemCount;
return space != oldDelegate.space ||
itemCount != oldDelegate.itemCount ||
column != oldDelegate.column ||
width != oldDelegate.width ||
height != oldDelegate.height;
}
}