Post

Replies

Boosts

Views

Activity

Reply to iOS voiceover for multiline input field
Thanks for response, but it is not what I am looking for. Your solution is compliant only for iOS15 (due to using @FocusState), needs a solution for iOS14 and above. the TextField - is a single line input view, I need a multiline input view like UITextView or TextEditor. I'll appreciate if any other suggestions you have.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Mar ’22
Reply to Can't switch focus between two input fields when voiceover is on (SwiftUI)
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:
Sep ’21