Update code

This commit is contained in:
2024-02-08 16:12:45 +08:00
parent 91144bf8f1
commit f47d3b8810
38 changed files with 554 additions and 211 deletions

View File

@@ -17,9 +17,8 @@ class GalleryPageExtra {
}
class GalleryPage extends StatefulWidget {
const GalleryPage(int gid, {Key? key, this.title})
: _gid = gid,
super(key: key);
const GalleryPage(int gid, {super.key, this.title})
: _gid = gid;
final int _gid;
final String? title;