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:
Garth Vander Houwen 2025-09-13 15:03:55 -07:00 committed by GitHub
parent 5b060f9aa5
commit d95db4eb1e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 {