changed selection overlay tint
This commit is contained in:
parent
cfc459ff8b
commit
ce0a253369
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ class GridItemSelectionOverlay<T> extends StatelessWidget {
|
||||||
alignment: AlignmentDirectional.topEnd,
|
alignment: AlignmentDirectional.topEnd,
|
||||||
padding: padding,
|
padding: padding,
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
color: isSelected ? Colors.black54 : Colors.transparent,
|
color: isSelected ? Theme.of(context).colorScheme.secondary.withOpacity(.6) : Colors.transparent,
|
||||||
borderRadius: borderRadius,
|
borderRadius: borderRadius,
|
||||||
),
|
),
|
||||||
duration: duration,
|
duration: duration,
|
||||||
|
|
Loading…
Reference in a new issue