Post

Replies

Boosts

Views

Activity

SwiftUI TextField and voice dictation
Hi everyone,I'm building an app with some TextField and I have some issues using the keyboard voice dictation.I created a SingleView project with a single TextField in the ContentView.struct ContentView: View { @State var text: String = "" var body: some View { TextField("Description", text: $text) .padding() } }When editing this TextField in the app, if I click on the mic button (in my keyboard), I only receive the first letter in the TextField.Is it a SwiftUI bug ? Like a view refresh breaking the link between the @State var and the voice dictation content ?
4
0
5.0k
Feb ’20
TestFlight alert after quitting the app
Hi everyone,On my last app, I launch a beta test phase but every time I quit the app, an alert show up telling me that the app crashed and asking me to if I want to share more informations to developpers.Here is the screenshot of the alert :https://imgur.com/zWVCTH8The app is made of SwiftUI with some UIKit part comming from Unity 3D.Several frameworks used.The alert show up from any screen of the app. It's not related to a specific part.
13
0
8.8k
Dec ’19