feat: 动态侧栏新增按最常访问显示所有已关注Up功能;抽屉式侧栏限制安全域

This commit is contained in:
orz12
2024-07-11 17:36:47 +08:00
parent e69c723e19
commit 99224640d8
6 changed files with 96 additions and 7 deletions

View File

@@ -73,14 +73,14 @@ class UpItem {
UpItem({
this.face,
this.hasUpdate,
this.isReserveRecall,
// this.isReserveRecall,
this.mid,
this.uname,
});
String? face;
bool? hasUpdate;
bool? isReserveRecall;
// bool? isReserveRecall;
int? mid;
String? uname;
String type = 'up';
@@ -88,7 +88,7 @@ class UpItem {
UpItem.fromJson(Map<String, dynamic> json) {
face = json['face'];
hasUpdate = json['has_update'];
isReserveRecall = json['is_reserve_recall'];
// isReserveRecall = json['is_reserve_recall'];
mid = json['mid'];
uname = json['uname'];
}