This commit is contained in:
2025-08-26 18:42:33 +08:00
parent f2ab55d545
commit 5d4a95bf07
7 changed files with 100 additions and 42 deletions

View File

@@ -83,11 +83,11 @@ fun LikeNoticeScreen() {
)
}
// Spacer(modifier = Modifier.height(28.dp))
if (likes.itemCount == 0) {
Box(
modifier = Modifier.fillMaxSize(),
contentAlignment = Alignment.Center
modifier = Modifier.fillMaxSize()
.padding(top=188.dp),
contentAlignment = Alignment.TopCenter
) {
Column(
modifier = Modifier.fillMaxWidth(),
@@ -98,12 +98,19 @@ fun LikeNoticeScreen() {
contentDescription = "No Notice",
modifier = Modifier.size(140.dp)
)
Spacer(modifier = Modifier.height(32.dp))
Spacer(modifier = Modifier.height(24.dp))
Text(
text = "Your like notification box is feeling lonely",
text = "Your like notification box is feeling lonely~",
color = AppColors.text,
fontSize = 16.sp,
fontWeight = FontWeight.W500,
fontWeight = FontWeight.W600,
)
Spacer(modifier = Modifier.size(8.dp))
Text(
text = "Agent&&friends might come upon seeing this~",
color = AppColors.text,
fontSize = 16.sp,
fontWeight = FontWeight.W400
)
}
}