上架图-缺省图调整

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

@@ -81,7 +81,7 @@ fun CommentNoticeScreen() {
Box(
modifier = Modifier
.fillMaxSize()
.padding(top = 188.dp),
.padding(top = 149.dp),
contentAlignment = Alignment.TopCenter
) {
Column(
@@ -89,22 +89,22 @@ fun CommentNoticeScreen() {
modifier = Modifier.fillMaxWidth()
) {
androidx.compose.foundation.Image(
painter = painterResource(id = R.mipmap.rider_pro_followers_empty),
painter = painterResource(id = R.mipmap.qst_pl_qs_img),
contentDescription = "No Comment",
modifier = Modifier.size(140.dp)
modifier = Modifier.size(181.dp)
)
Spacer(modifier = Modifier.size(24.dp))
Text(
text = "Wait for the first traveler to appear~",
text = "等一位旅人~",
color = AppColors.text,
fontSize = 16.sp,
fontWeight = FontWeight.W600
)
Spacer(modifier = Modifier.size(8.dp))
Text(
text = "Post to connect.",
text = "去发布动态,让更多人参与对话",
color = AppColors.text,
fontSize = 16.sp,
fontSize = 14.sp,
fontWeight = FontWeight.W400
)
}