mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
2.7.2 Text Field Background Changes (#1399)
* Bump version * iOS 26 styled keyboard toolbar Update tips backgrounds * Link the logo to the about page * Remove double logo on node list, update scary location log message, update tls toggle visibility and keyboard scroll dismiss on mqtt config * Remove redundant colorScheme check * Change background for textfield from a capsule to a RoundedRectangle
This commit is contained in:
parent
5b060f9aa5
commit
d95db4eb1e
1 changed files with 3 additions and 3 deletions
|
|
@ -38,11 +38,11 @@ struct TextMessageField: View {
|
|||
TextField("Message", text: $typingMessage, axis: .vertical)
|
||||
.padding(10)
|
||||
.background(
|
||||
Capsule()
|
||||
RoundedRectangle(cornerRadius: 20)
|
||||
.strokeBorder(.tertiary, lineWidth: 1)
|
||||
.background(Capsule().fill(Color(.systemBackground)))
|
||||
.background(RoundedRectangle(cornerRadius: 20).fill(Color(.systemBackground)))
|
||||
)
|
||||
.clipShape(Capsule())
|
||||
.clipShape(RoundedRectangle(cornerRadius: 20))
|
||||
.onChange(of: typingMessage) { _, value in
|
||||
totalBytes = value.utf8.count
|
||||
while totalBytes > Self.maxbytes {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue