show live rank

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-12-28 20:48:24 +08:00
parent a037d8e793
commit 2a52157c3f
24 changed files with 490 additions and 47 deletions

View File

@@ -0,0 +1,13 @@
// ignore_for_file: constant_identifier_names
enum LiveContributionRankType {
online_rank('在线榜', 'contribution_rank'),
daily_rank('日榜', 'today_rank'),
weekly_rank('周榜', 'current_week_rank'),
monthly_rank('月榜', 'current_month_rank')
;
final String title;
final String sw1tch;
const LiveContributionRankType(this.title, this.sw1tch);
}