优化首页显示

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");
}

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><title>chevron-right</title><path d="M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z" /></svg>

After

Width:  |  Height:  |  Size: 166 B