上架图-缺省图调整

This commit is contained in:
2025-09-02 16:32:59 +08:00
parent 0ac3312fea
commit 2b0d33fdbe
142 changed files with 115 additions and 63 deletions

View File

@@ -86,7 +86,7 @@ fun LikeNoticeScreen() {
if (likes.itemCount == 0) {
Box(
modifier = Modifier.fillMaxSize()
.padding(top=188.dp),
.padding(top=149.dp),
contentAlignment = Alignment.TopCenter
) {
Column(
@@ -94,22 +94,22 @@ fun LikeNoticeScreen() {
horizontalAlignment = Alignment.CenterHorizontally
) {
Image(
painter = painterResource(id = R.mipmap.rider_pro_like_empty),
painter = painterResource(id = R.mipmap.qst_z_qs_img),
contentDescription = "No Notice",
modifier = Modifier.size(140.dp)
modifier = Modifier.size(181.dp)
)
Spacer(modifier = Modifier.height(24.dp))
Text(
text = "Your like notification box is feeling lonely~",
text = "你的赞在路上~",
color = AppColors.text,
fontSize = 16.sp,
fontWeight = FontWeight.W600,
)
Spacer(modifier = Modifier.size(8.dp))
Text(
text = "Agent&&friends might come upon seeing this~",
text = "智能体和朋友看到后,说不定马上就来~",
color = AppColors.text,
fontSize = 16.sp,
fontSize = 14.sp,
fontWeight = FontWeight.W400
)
}