Skip to main content

All Questions

1 vote
1 answer
74 views

isssue with ZStack and list

I have a RocketView View to view SpaceX rockets with the SpaceX API. I have an issue with ZStack or VStack in the RocketCell View where the cell is not showing the whole image in the list. How can I ...
NinjaDeveloper's user avatar
0 votes
1 answer
240 views

SwiftUI ZStack not showing bottom element with List

When put Image to the bottom of ZStack , image just not showing struct ContentView: View { var body: some View { VStack{ ZStack{ Image(systemName:"...
Dikey's user avatar
  • 121
2 votes
1 answer
78 views

SwiftUI: implementing ZStack inside of navigationBarItems shows navigationBarItems error

I'm trying to implement a ZStack inside of navigationBarItems to load a custom alert. Here is my implementation: var body: some View { VStack{ List(self.itemsStore.names){ item ...
user2924482's user avatar
  • 9,170
2 votes
2 answers
633 views

Prevent last rows in List to be covered by other view in ZStack

I have a List partially covered by a translucent view (let's call it the overlay). My problem is that for long lists last rows are not accessible since they are covered by the overlay. I'm using a ...
cbuchart's user avatar
  • 11.6k