fix fan/follow params

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-11-07 19:40:32 +08:00
parent 3d1199363b
commit d5bb4bc149
12 changed files with 94 additions and 30 deletions

View File

@@ -17,6 +17,17 @@ class FollowPage extends StatefulWidget {
@override
State<FollowPage> createState() => _FollowPageState();
static void toFollowPage({dynamic mid, String? name}) {
if (mid == null) return;
Get.toNamed(
'/follow',
arguments: {
'mid': Utils.safeToInt(mid),
'name': name,
},
);
}
}
class _FollowPageState extends State<FollowPage> {