优化首页显示

This commit is contained in:
2024-04-30 12:32:25 +08:00
parent 0d43919561
commit bcb748a9b1
9 changed files with 152 additions and 26 deletions

View File

@@ -1,5 +1,8 @@
export class CommonRes {
static readonly IC_CHEVRON_LEFT = "ic_chevron_left";
static readonly IC_CHEVRON_RIGHT = "ic_chevron_right";
private constructor() {
}
@@ -7,10 +10,14 @@ export class CommonRes {
return $r("app.media.ic_refresh");
}
public static getIconBack(): Resource {
public static getIconChevronLeft(): Resource {
return $r("app.media.ic_chevron_left");
}
public static getIconChevronRight(): Resource {
return $r("app.media.ic_chevron_right");
}
public static getIconClose(): Resource {
return $r("app.media.ic_close");
}