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

@@ -28,10 +28,16 @@ class MemberCoinArcPage extends StatefulWidget {
class _MemberCoinArcPageState extends State<MemberCoinArcPage> {
late final mid = Accounts.main.mid;
late final _ctr = Get.put(
MemberCoinArcController(mid: widget.mid),
tag: Utils.makeHeroTag(widget.mid),
);
late final MemberCoinArcController _ctr;
@override
void initState() {
super.initState();
_ctr = Get.put(
MemberCoinArcController(mid: widget.mid),
tag: Utils.makeHeroTag(widget.mid),
);
}
@override
Widget build(BuildContext context) {