Make read receipt indicator more prominent

- Changed from double checkmarks to checkmark.circle.fill icon
- Made the icon larger (size 12) and bold
- Used explicit RGB blue color (0.0, 0.478, 1.0)
- This should make it very obvious when a message has been read
This commit is contained in:
jack
2025-07-06 22:33:19 +02:00
parent 1fec1ee315
commit c72c4949ff
+3 -5
View File
@@ -1111,12 +1111,10 @@ struct DeliveryStatusView: View {
case .read(let nickname, _):
HStack(spacing: -2) {
Image(systemName: "checkmark")
.font(.system(size: 10))
Image(systemName: "checkmark")
.font(.system(size: 10))
Image(systemName: "checkmark.circle.fill")
.font(.system(size: 12, weight: .bold))
.foregroundColor(Color(red: 0.0, green: 0.478, blue: 1.0)) // Bright blue
}
.foregroundColor(Color.blue)
.help("Read by \(nickname)")
.onAppear {
print("[UI] Showing BLUE checkmarks for read status by \(nickname)")