mirror of
https://github.com/permissionlesstech/bitchat.git
synced 2026-07-24 22:45:19 +00:00
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:
@@ -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)")
|
||||
|
||||
Reference in New Issue
Block a user