Xcode – Flutter with ios 17
Since I updated to iOS 17 I get that I must perform this same configuration that I have already verified and when I run the app on the physical device it opens xcode. You may be prompted to give access…
Since I updated to iOS 17 I get that I must perform this same configuration that I have already verified and when I run the app on the physical device it opens xcode. You may be prompted to give access…
I'm working on the creation of an iPhone application and am having a few issues with the nature of @Binding, @ObservedObject, and the @Published property. I was pretty sure I have this all right but apparently not since it's still…
My goal is to conform to the Dependency Inversion principle. Meaning that SheetView should depend on Sheet ViewModel's protocol. The problem is when I pass ViewModel to a Sheet View's constructor, when I dismiss the Sheet View, it will not…
I have the following SwiftUI view in my project that supports macOS 13+ and iOS 16+: struct MyTextField: View { var placeholder: LocalizedStringKey #if os (iOS) var keyboardType: UIKeyboardType = .default #endif } at call site I can't use a…
I am trying to create an app extension that i can use in a shortcut using the "share with apps" action. I have the extension created AND it shows up in the regular share sheet for just sharing anything. However,…
Imagine a large table view that's mostly transparent, with some elements here and there. (Perhaps there's a large gap between cells, or, picture the cells being mainly transparent with only a couple buttons or such. Behind this mostly-transparent table is…
I'm attempting to separate my model and view by adding a view model as a bridge. When I do this in the following code, clicking on the 'Increase Score' button no longer triggers a view update. It works if I…
The below list view loads 1000 rows and I see 1000 NameTextView being created. But with reusability we should be seeing very few NameTextView. Is there a way to optimize the code and number of rows that will be created.…
I am building my application by flutter. It has already published in Appstore, and it was launched normally before updating mac version and ios version to sonoma 14.0, and 17.0.3. xcode was also updated to 15.0 Error code from xcode…
I am using the ignite boilerplate for my React Native app and was forced to upgrade react-native to 0.72.6 from 0.70.5 because I upgraded to Xcode 15 (didn't know any better). Now, after finally getting the build to succeed, I…