feat: member cheese

feat: fav pugv

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-08-07 11:19:59 +08:00
parent 26a5b7b7a7
commit 6d55321699
22 changed files with 634 additions and 17 deletions

View File

@@ -4,7 +4,17 @@ enum MemberTabType {
dynamic('动态'),
contribute('投稿'),
favorite('收藏'),
bangumi('番剧');
bangumi('番剧'),
cheese('课堂');
static bool contains(String type) {
for (var e in MemberTabType.values) {
if (e.name == type) {
return true;
}
}
return false;
}
final String title;
const MemberTabType(this.title);