Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-01-31 13:10:09 +08:00
parent dbc7bcd0dd
commit 8964197b73
68 changed files with 560 additions and 293 deletions

View File

@@ -31,16 +31,22 @@ class MemberOpus extends StatefulWidget {
class _MemberOpusState extends State<MemberOpus>
with AutomaticKeepAliveClientMixin {
late final _controller = Get.put(
MemberOpusController(
mid: widget.mid,
heroTag: widget.heroTag,
),
tag: widget.heroTag,
);
late final MemberOpusController _controller;
late double _maxWidth;
@override
void initState() {
super.initState();
_controller = Get.put(
MemberOpusController(
mid: widget.mid,
heroTag: widget.heroTag,
),
tag: widget.heroTag,
);
}
@override
Widget build(BuildContext context) {
super.build(context);