show medal wall

show user follow time

show top image title

Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-03-20 22:12:43 +08:00
parent 662ccfcf0a
commit ae59d257c3
21 changed files with 927 additions and 222 deletions

View File

@@ -0,0 +1,11 @@
class MedalInfo {
int? wearingStatus;
MedalInfo({
this.wearingStatus,
});
factory MedalInfo.fromJson(Map<String, dynamic> json) => MedalInfo(
wearingStatus: json['wearing_status'] as int?,
);
}