opt pages

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-06-05 14:57:54 +08:00
parent b960359a39
commit 707d2f4b07
66 changed files with 1165 additions and 481 deletions

View File

@@ -19,13 +19,13 @@ import 'package:flutter/services.dart' show HapticFeedback;
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
import 'package:get/get.dart';
class PgcIntroPanel extends StatefulWidget {
class PgcIntroPage extends StatefulWidget {
final int? cid;
final String heroTag;
final Function showEpisodes;
final Function showIntroDetail;
const PgcIntroPanel({
const PgcIntroPage({
super.key,
this.cid,
required this.heroTag,
@@ -34,10 +34,10 @@ class PgcIntroPanel extends StatefulWidget {
});
@override
State<PgcIntroPanel> createState() => _PgcIntroPanelState();
State<PgcIntroPage> createState() => _PgcIntroPageState();
}
class _PgcIntroPanelState extends State<PgcIntroPanel>
class _PgcIntroPageState extends State<PgcIntroPage>
with AutomaticKeepAliveClientMixin {
late PgcIntroController pgcIntroController;
late VideoDetailController videoDetailCtr;