Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-12-25 13:43:20 +08:00
parent 161bf2eedb
commit 20a36e8f9a
97 changed files with 596 additions and 436 deletions

View File

@@ -31,8 +31,15 @@ class PgcIntroPanel extends CommonSlidePage {
class _IntroDetailState extends State<PgcIntroPanel>
with TickerProviderStateMixin, CommonSlideMixin {
late final _tabController = TabController(length: 2, vsync: this);
final _controller = ScrollController();
late final ScrollController _controller;
late final TabController _tabController;
@override
void initState() {
super.initState();
_controller = ScrollController();
_tabController = TabController(length: 2, vsync: this);
}
@override
void dispose() {