File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -42,11 +42,14 @@ class _MasonryFilesState extends State<MasonryFiles> {
42
42
return ValueListenableBuilder (
43
43
valueListenable: isAnythingSelected,
44
44
builder: (context, isAnythingSelected, _) {
45
- return PreviewCard (
46
- filePath: file,
47
- toggleSelection: toggleSelection,
48
- selected: widget.selectedFiles.value.contains (file),
49
- isAnythingSelected: isAnythingSelected,
45
+ return Align (
46
+ alignment: Alignment .bottomCenter,
47
+ child: PreviewCard (
48
+ filePath: file,
49
+ toggleSelection: toggleSelection,
50
+ selected: widget.selectedFiles.value.contains (file),
51
+ isAnythingSelected: isAnythingSelected,
52
+ ),
50
53
);
51
54
},
52
55
);
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ class _PreviewCardState extends State<PreviewCard> {
93
93
onSecondaryTap: _toggleCardSelection,
94
94
onLongPress: _toggleCardSelection,
95
95
child: ColoredBox (
96
- color: colorScheme.primary. withValues (alpha : 0.05 ) ,
96
+ color: colorScheme.surfaceContainerLow ,
97
97
child: Stack (
98
98
children: [
99
99
Column (
You can’t perform that action at this time.
0 commit comments