Hi I'm struggling with the problem that I can't load image in TabView
I wanted to make page view so I try to use TabView() and PageTabViewStyle.
and I also use KingFisher library to load image by URL.
When I wrote code like below, this code is not working. :
TabView() {
KFImage(URL(string: <ADDRESS for IMAGE>)!)
.resizable()
.clipped()
.frame(width: width_screen, height: height_banner, alignment: .topLeading)
}
.tabViewStyle(PageTabViewStyle(indexDisplayMode: .never))
I had doubt about KFImage but if the KFImage scope is out of TabView(), it works well. When I wrote code like below, it works well.
var body: some View {
TabView() {
...
}
KFImage(URL(string: "<ADDRESS for IMAGE>")!)
.resizable()
.clipped()
.frame(width: width_screen, height: height_banner, alignment: .topLeading)
}
I wonder how to present image in this tabview. Or I should construct custom view to make paging view.
I think it is about async operation. I come up with this solution;
in view:
in body:
*I used "UIImage(named: "defaultImage")!" and "width: 250, height:200" but you can replace them with yours.
in view:
Another solution without using Kingfisher would be like;
This works well.