mirror of
https://github.com/permissionlesstech/bitchat.git
synced 2026-07-24 23:45:18 +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, _):
|
case .read(let nickname, _):
|
||||||
HStack(spacing: -2) {
|
HStack(spacing: -2) {
|
||||||
Image(systemName: "checkmark")
|
Image(systemName: "checkmark.circle.fill")
|
||||||
.font(.system(size: 10))
|
.font(.system(size: 12, weight: .bold))
|
||||||
Image(systemName: "checkmark")
|
.foregroundColor(Color(red: 0.0, green: 0.478, blue: 1.0)) // Bright blue
|
||||||
.font(.system(size: 10))
|
|
||||||
}
|
}
|
||||||
.foregroundColor(Color.blue)
|
|
||||||
.help("Read by \(nickname)")
|
.help("Read by \(nickname)")
|
||||||
.onAppear {
|
.onAppear {
|
||||||
print("[UI] Showing BLUE checkmarks for read status by \(nickname)")
|
print("[UI] Showing BLUE checkmarks for read status by \(nickname)")
|
||||||
|
|||||||
Reference in New Issue
Block a user