No nothing has work.
When I tap once on the first text field I hear: "is editing, character mode" instead of "text field, double tap to edit". And then I try to double tap to begin edit this focused field and I hear following: "insertion point at start".
Another simple way to reproduce this issue: leave only single text field with associated "Text" as following:
struct DummyTestView: View {
@State private var inputValue1 = ""
var body: some View {
VStack {
Group {
TextField("input field1", text: $inputValue1)
Text("value1: \(inputValue1)")
}
.padding( .all)
.overlay(RoundedRectangle(cornerRadius: 6)
.stroke(Color.black.opacity(0.5), lineWidth: 2)
)
.padding( .all)
}
}
}
Once you try to edit this text field and hit "Return" button, you not able to edit this text field anymore.
Please take a look at following screen recording:
https://drive.google.com/file/d/17ySCwEUlH8IcFhqmiSF-WBSl_GTJEX_1
https://drive.google.com/file/d/1G4v21F9xlQue1yvEbcqxv55ysUTtTmqB
Or simply try to reproduce this issue with proposed code.
Topic:
UI Frameworks
SubTopic:
SwiftUI
Tags: