feat: 接入起卦后端流程并完善积分扣减链路

This commit is contained in:
qzl
2026-04-03 19:04:46 +08:00
parent a136e42290
commit d87b2e1e3a
56 changed files with 3310 additions and 809 deletions
@@ -278,9 +278,14 @@ class _HomeScreenState extends State<HomeScreen> {
}
void _onStartDivination() {
Navigator.of(
context,
).push(MaterialPageRoute<void>(builder: (_) => const DivinationScreen()));
Navigator.of(context).push(
MaterialPageRoute<void>(
builder: (_) => DivinationScreen(
sessionStore: widget.sessionStore,
userId: widget.account,
),
),
);
}
void _showSnack(BuildContext context, String message) {