I'd like SwiftUI DragGesture to start only when the gesture is in a specific direction (horizontal/vertical). Is it possible?
It looks like Xcode 13.3 broke the TextField with formatter. In example below the Text should show the value entered in the TextField, which works fine when bui
I am having some issues trying to display a PDF which is stored in Firebase Storage in my SwiftUI app. I have successfully done the following; Uploaded a PDF fi
I am working to implement some SwiftUI content into my existing app. I currently have a UIViewController, which hosts a MTKView for camera preview. I have cre
I have a List that's displaying two Views of the same type. When you tap on one of the views, they change their height with an animation. However, the List tho
I want to resize an Image frame to be a square that takes the same width of the iPhone's screen and consequently the same value (screen width) for height. The
When added a long text inside a text view, it works as expected (not truncated). Xcode 11.0 beta 6 (11M392q) import SwiftUI struct ContentView: View { v
Can @StateObject be injected using Resolver? I have the following: struct FooView: View { @StateObject private var viewModel: FooViewModel some code }
When I try below code and show Emoji keyboard, keyboard will hide with Emoji keyboard horizontal scroll. I applied "keyboardDismissMode" to make keyboard hide w
How can I use a SwiftUI view struct in place of a traditional cell and xib in a UITableViewController? import UIKit import SwiftUI class MasterViewController:
I found strange behavior in SwiftUI. The sheet shows empty text when I tap a list column first time. It seems correct after second time. Would you help me? impo
I have the following SwiftUI view and I want to have it repeat the scale animation to simulate a pulsing effect. However, in addition to the scaling, the circle
When I run a Picker Code in the Simulator or the Canvas, the Picker goes always back to the first option with an animation or just freezes. This happens since l
I have a list of Text views that include a year saved as an int. I'm displaying it in an interpolated string: Text("\($0.property) \($0.year) \($0.etc)") The p
Default swift project with view controller embedded in navigationController and pushing to next UIHostingController. How to call navigationController?.popViewC
I'm creating an app and I get this error: Thread 1: EXC_BAD_ACCESS (code=2, address=0x7ffeead03e18). Whole code runs without any errors, it's just when I try to
I have a Binding to a Double parameter that is set by a SwiftUI TextField. I use a custom Formatter that converts to and from a Double value. The TextField
So technically I want to show a loading screen view. I'm using fullScreenCover. struct ContentView: View { @State private var isLoading = false
How can I change the default gray background color of a GroupBox view in SwiftUI? I tried adding a background modifier, but this just changes the white backgrou
I'm using SwiftUI 3.0, Swift 5.5 and Xcode 13.2, tested on iOS 15.3 iPhone device, and iOS 15.2 iPhone simulator. I have tested the following. This is a view, w