mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
When a ListView scrolls, it generates a LayoutChangedNotification, which was causing Material to repaint unconditionally. That's not necessary if there are no ink effects that need to be moved. This patch skips the repaint in that case. Fixes #7937