mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
Remove reply overlay until it can look decent
This commit is contained in:
parent
193512ee78
commit
f3316518cc
4 changed files with 13 additions and 12 deletions
|
|
@ -24354,6 +24354,7 @@
|
|||
}
|
||||
},
|
||||
"Replying to a message" : {
|
||||
"extractionState" : "stale",
|
||||
"localizations" : {
|
||||
"zh-Hant-TW" : {
|
||||
"stringUnit" : {
|
||||
|
|
|
|||
|
|
@ -136,12 +136,11 @@ struct ChannelMessageList: View {
|
|||
Spacer(minLength: 50)
|
||||
}
|
||||
}
|
||||
|
||||
.overlay {
|
||||
RoundedRectangle(cornerRadius: 10)
|
||||
.stroke(.blue, lineWidth: 2)
|
||||
.opacity(((messageToHighlight == message.messageId) || (replyMessageId == message.messageId)) ? 1 : 0)
|
||||
}
|
||||
// .overlay {
|
||||
// RoundedRectangle(cornerRadius: 18)
|
||||
// .stroke(.blue, lineWidth: 2)
|
||||
// .opacity(((messageToHighlight == message.messageId) || (replyMessageId == message.messageId)) ? 1 : 0)
|
||||
// }
|
||||
.padding([.leading, .trailing])
|
||||
.frame(maxWidth: .infinity)
|
||||
.id(message.messageId)
|
||||
|
|
|
|||
|
|
@ -39,8 +39,9 @@ struct TextMessageField: View {
|
|||
} label: {
|
||||
Image(systemName: "x.circle.fill")
|
||||
}
|
||||
Text("Replying to a message")
|
||||
Text("Reply")
|
||||
}
|
||||
.padding(.top)
|
||||
}
|
||||
|
||||
ZStack {
|
||||
|
|
|
|||
|
|
@ -123,11 +123,11 @@ struct UserMessageList: View {
|
|||
Spacer(minLength: 50)
|
||||
}
|
||||
}
|
||||
.overlay {
|
||||
RoundedRectangle(cornerRadius: 10)
|
||||
.stroke(.blue, lineWidth: 2)
|
||||
.opacity(((messageToHighlight == message.messageId) || (replyMessageId == message.messageId)) ? 1 : 0)
|
||||
}
|
||||
// .overlay {
|
||||
// RoundedRectangle(cornerRadius: 10)
|
||||
// .stroke(.blue, lineWidth: 2)
|
||||
// .opacity(((messageToHighlight == message.messageId) || (replyMessageId == message.messageId)) ? 1 : 0)
|
||||
// }
|
||||
.padding([.leading, .trailing])
|
||||
.frame(maxWidth: .infinity)
|
||||
.id(message.messageId)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue