Tags panel overscroll will scroll parent

This commit is contained in:
2023-09-04 20:25:28 +08:00
parent 49239869ff
commit c3e46170d4
6 changed files with 48 additions and 7 deletions

View File

@@ -19,7 +19,9 @@ class ThumbnailGridView extends StatelessWidget {
final page = pages[index]!;
final fileId =
files != null ? files!.files[page.token]!.first.id : null;
return Thumbnail(page, fileId: fileId);
return Container(
padding: const EdgeInsets.all(4),
child: Thumbnail(page, fileId: fileId));
});
}
}