Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-02-07 11:02:42 +08:00
parent e8145ef65a
commit d253ef468b
6 changed files with 43 additions and 38 deletions

View File

@@ -16,10 +16,16 @@ class RelatedVideoPanel extends StatefulWidget {
}
class _RelatedVideoPanelState extends State<RelatedVideoPanel> with GridMixin {
late final RelatedController _relatedController = Get.putOrFind(
RelatedController.new,
tag: widget.heroTag,
);
late final RelatedController _relatedController;
@override
void initState() {
super.initState();
_relatedController = Get.putOrFind(
RelatedController.new,
tag: widget.heroTag,
);
}
@override
Widget build(BuildContext context) {