Compare commits
6 Commits
java_test
...
photos-v1.
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3d90e37a00 | ||
|
|
eb9f5830a5 | ||
|
|
348ede2a03 | ||
|
|
5619b349b3 | ||
|
|
1648f62da6 | ||
|
|
d7fdca78f7 |
@@ -224,12 +224,13 @@ class GalleryGroups {
|
|||||||
int i = 0;
|
int i = 0;
|
||||||
while (!endOfListReached) {
|
while (!endOfListReached) {
|
||||||
gridRowChildren.add(
|
gridRowChildren.add(
|
||||||
GalleryFileWidget(
|
RepaintBoundary(
|
||||||
key: ValueKey(
|
key: ValueKey(
|
||||||
tagPrefix +
|
tagPrefix +
|
||||||
filesInGroup[firstIndexOfRowWrtFilesInGroup + i]
|
filesInGroup[firstIndexOfRowWrtFilesInGroup + i]
|
||||||
.tag,
|
.tag,
|
||||||
),
|
),
|
||||||
|
child: GalleryFileWidget(
|
||||||
file: filesInGroup[firstIndexOfRowWrtFilesInGroup + i],
|
file: filesInGroup[firstIndexOfRowWrtFilesInGroup + i],
|
||||||
selectedFiles: selectedFiles,
|
selectedFiles: selectedFiles,
|
||||||
limitSelectionToOne: limitSelectionToOne,
|
limitSelectionToOne: limitSelectionToOne,
|
||||||
@@ -237,6 +238,7 @@ class GalleryGroups {
|
|||||||
photoGridSize: crossAxisCount,
|
photoGridSize: crossAxisCount,
|
||||||
currentUserID: currentUserID,
|
currentUserID: currentUserID,
|
||||||
),
|
),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
endOfListReached =
|
endOfListReached =
|
||||||
@@ -247,12 +249,13 @@ class GalleryGroups {
|
|||||||
} else {
|
} else {
|
||||||
for (int i = 0; i < crossAxisCount; i++) {
|
for (int i = 0; i < crossAxisCount; i++) {
|
||||||
gridRowChildren.add(
|
gridRowChildren.add(
|
||||||
GalleryFileWidget(
|
RepaintBoundary(
|
||||||
key: ValueKey(
|
key: ValueKey(
|
||||||
tagPrefix +
|
tagPrefix +
|
||||||
filesInGroup[firstIndexOfRowWrtFilesInGroup + i]
|
filesInGroup[firstIndexOfRowWrtFilesInGroup + i]
|
||||||
.tag,
|
.tag,
|
||||||
),
|
),
|
||||||
|
child: GalleryFileWidget(
|
||||||
file: filesInGroup[firstIndexOfRowWrtFilesInGroup + i],
|
file: filesInGroup[firstIndexOfRowWrtFilesInGroup + i],
|
||||||
selectedFiles: selectedFiles,
|
selectedFiles: selectedFiles,
|
||||||
limitSelectionToOne: limitSelectionToOne,
|
limitSelectionToOne: limitSelectionToOne,
|
||||||
@@ -260,6 +263,7 @@ class GalleryGroups {
|
|||||||
photoGridSize: crossAxisCount,
|
photoGridSize: crossAxisCount,
|
||||||
currentUserID: currentUserID,
|
currentUserID: currentUserID,
|
||||||
),
|
),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user