Open
Description
I use the url-image library in one of the apps I'm building to load images from a server into a SwiftUI Image view. I've tried to migrate the view to use the ScrollViewReactiveHeader and put the URLImage into the header part of it - without any success. The view always displays with 0 height, therefore making the ScrollViewReactiveHeader invisible. See below for a snippet that shows how I'm trying to use both libraries together:
var body: some View {
NavigationView {
ScrollViewReactiveHeader(header: {
URLImage(url) { image in
image
.resizable()
.aspectRatio(contentMode: .fill)
.scaledToFill()
.clipped()
.frame(height: 300)
}
}, headerOverlay: {
[...]
}, body: {
[...]
}, configuration: .init(showStatusBar: true, backgroundColor: nil))
}
}
I've also tried wrapping the URLImage in a VStack with a fixed height but that didn't help either. I'd be happy if you could provide any hints on what to do or where the problem might be :)
Metadata
Metadata
Assignees
Labels
No labels