mirror of
https://github.com/lifegpc/eh_downloader_flutter.git
synced 2026-06-06 05:49:03 +08:00
Update code
This commit is contained in:
@@ -10,7 +10,7 @@ import '../utils/download_zip.dart';
|
||||
final _log = Logger("DownloadZipPage");
|
||||
|
||||
class DownloadZipPage extends StatefulWidget {
|
||||
const DownloadZipPage(this.gid, {Key? key}) : super(key: key);
|
||||
const DownloadZipPage(this.gid, {super.key});
|
||||
final int gid;
|
||||
|
||||
@override
|
||||
|
||||
@@ -9,8 +9,7 @@ import '../globals.dart';
|
||||
final _log = Logger("GalleryDetailsPage");
|
||||
|
||||
class _KeyValue extends StatelessWidget {
|
||||
const _KeyValue(this.name, this.value, {Key? key, this.fontSize})
|
||||
: super(key: key);
|
||||
const _KeyValue(this.name, this.value, {this.fontSize});
|
||||
final String name;
|
||||
final String value;
|
||||
final double? fontSize;
|
||||
@@ -39,7 +38,7 @@ class GalleryDetailsPageExtra {
|
||||
}
|
||||
|
||||
class GalleryDetailsPage extends StatefulWidget {
|
||||
const GalleryDetailsPage(this.gid, {Key? key, this.meta}) : super(key: key);
|
||||
const GalleryDetailsPage(this.gid, {super.key, this.meta});
|
||||
final int gid;
|
||||
final GMeta? meta;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user