ScrollView {
ZStack{
NavigationView(){
List {...}
.toolbar {...} }
.sheet(isPresented: $showingProfile) {...}
.sheet(isPresented: $showingVoortgang) {...}
}
}
}
.background(Image("Background3")
.resizable()
.ignoresSafeArea()
.opacity(1))
// I have a NavigationView in a Stack in a ScrollView. I made the background of the scrollView my picture but it wouldn't render the whole page, only the background of the back page and not the NavigationView