Do you mean something like this?
VStack {
ContainerView()
.ignoresSafeArea()
List {}
}
However, with this approach only the List is scrollable. The behavior I’m trying to achieve is similar to the image in the post above. Perhaps something like this?
ScrollView {
ContainerView()
.ignoresSafeArea()
List { }
}
However, this doesn’t work because List is scrollable on its own. However, Im still interested in the look and feel of a List below the container.
Topic:
UI Frameworks
SubTopic:
SwiftUI