All Questions
Tagged with swiftui-zstack swiftui-list
4 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 ...
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:"...
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 ...
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 ...