refa: live page

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-05-05 17:03:49 +08:00
parent 7689fe8aa4
commit 562f9035e8
31 changed files with 1334 additions and 461 deletions

View File

@@ -0,0 +1,20 @@
class CalendarButton {
String? text;
String? link;
CalendarButton({this.text, this.link});
factory CalendarButton.fromJson(Map<String, dynamic> json) {
return CalendarButton(
text: json['text'] as String?,
link: json['link'] as String?,
);
}
Map<String, dynamic> toJson() => {
'text': text,
'link': link,
};
}