fix highlightwrapper on new flutter version

This commit is contained in:
Henry Hiles 2026-07-20 19:55:15 -04:00
commit 09bc9bdcbd
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs

View file

@ -14,7 +14,7 @@ class HighlightWrapper extends StatelessWidget {
? Theme.of(context).colorScheme.onSurface.withAlpha(50)
: Colors.transparent,
duration: .new(milliseconds: 250),
child: child,
child: Material(color: Colors.transparent, child: child),
),
);
}