feat: search trending page

Closes #684

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-04-14 22:57:13 +08:00
parent 7cc0c83df1
commit bc9c20c509
14 changed files with 469 additions and 45 deletions

View File

@@ -0,0 +1,14 @@
class StatDatas {
StatDatas();
factory StatDatas.fromJson(Map<String, dynamic> json) {
// TODO: implement fromJson
throw UnimplementedError('StatDatas.fromJson($json) is not implemented');
}
Map<String, dynamic> toJson() {
// TODO: implement toJson
throw UnimplementedError();
}
}