fix: fix avatar animation & profile colors

This commit is contained in:
2026-01-31 15:54:10 +05:00
parent c249278421
commit 2c3b34783c
2 changed files with 7 additions and 11 deletions

View File

@@ -465,7 +465,7 @@ fun ChatsListScreen(
text = accountName,
fontSize = 16.sp,
fontWeight = FontWeight.SemiBold,
color = if (isColorLight(headerColor)) Color.Black else Color.White
color = Color.White
)
}
@@ -476,8 +476,7 @@ fun ChatsListScreen(
text =
"@$accountUsername",
fontSize = 13.sp,
color =
if (isColorLight(headerColor)) Color.Black.copy(alpha = 0.7f) else Color.White.copy(alpha = 0.7f)
color = Color.White.copy(alpha = 0.7f)
)
}
}