python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
SwiftUI combine views with Stack
I am trying to create a design like this using text and image in a ZStack but my current implementation isn't showing the text at all, and I don't know why
ZStack {
Text(&qu...
tHatpart
Votes: 0
Answers: 1
How can I position 1 image relative to another in a ZStack in SwiftUI?
I have 2 images in a ZStack. How can I position image "x.circle" to the top right of the image "person.fill"?
ZStack {
Image(systemName: "person.fill")
...
Vaz
Votes: 0
Answers: 1
is there a UIKit equivalent to SwiftUI's zstack?
I'm trying to create something like this. I've been working with SwiftUI recently so I know I could create that by adding an image, text and button (the I'm flexible text is the label for a button/Nav...
zamanada
Votes: 0
Answers: 1
SwiftUI: Different alignment behavior of containers in GeometryReader
A Text element inside a ZStack(alignment: .bottom) is displayed at the bottom of the container (as expected). Tho, if the same ZStack is inside a GeometryReader, the alignment does not behave the same...
Dominik Seemayr
Votes: 0
Answers: 2