Fix gallery's title can not display correct on chrome/firefox

This commit is contained in:
2023-09-14 21:00:33 +08:00
parent 0ffc08c624
commit a58732f788
4 changed files with 55 additions and 20 deletions

View File

@@ -123,7 +123,8 @@ class _GalleriesPage extends State<GalleriesPage> with ThemeModeWidget {
return ListTile(
title: Text(item.preferredTitle),
onTap: () {
context.push("/gallery/${item.gid}");
context.push("/gallery/${item.gid}",
extra: GalleryPageExtra(title: item.preferredTitle));
},
);
}),