Private
Public Access
1
0

Some minor changes

This commit is contained in:
2025-08-29 18:49:00 -06:00
parent 5da92a90d4
commit 54df338ce0
3 changed files with 16 additions and 5 deletions

View File

@@ -17,9 +17,15 @@ struct ConversationListView: View
let isUnread = conv.wrappedValue.unreadCount > 0
HStack(spacing: 0.0) {
Image(systemName: isUnread ? "circlebadge.fill" : "")
.foregroundStyle(.tint)
.frame(width: 10.0)
if isUnread {
Image(systemName: "circlebadge.fill")
.foregroundStyle(.tint)
.frame(width: 10.0)
} else {
Rectangle()
.foregroundStyle(.clear)
.frame(width: 10.0)
}
VStack(alignment: .leading) {
Text(conv.wrappedValue.displayName)