Posts

Post not yet marked as solved
13 Replies
7.2k Views
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.
Posted Last updated
.
Post marked as solved
4 Replies
4.1k Views
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 ?
Posted Last updated
.