bubble page

Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-04-09 20:51:28 +08:00
parent db30aa8041
commit 222c9d01a0
22 changed files with 571 additions and 9 deletions

View File

@@ -0,0 +1,26 @@
class TribeInfo {
String? id;
String? title;
String? subTitle;
String? faceUrl;
String? jumpUri;
String? summary;
TribeInfo({
this.id,
this.title,
this.subTitle,
this.faceUrl,
this.jumpUri,
this.summary,
});
factory TribeInfo.fromJson(Map<String, dynamic> json) => TribeInfo(
id: json['id'] as String?,
title: json['title'] as String?,
subTitle: json['sub_title'] as String?,
faceUrl: json['face_url'] as String?,
jumpUri: json['jump_uri'] as String?,
summary: json['summary'] as String?,
);
}