Closed
Description
It seems image loaded transitions require an indicator to be set if even if one isn't required
Animation works:
WebImage(url: url)
.renderingMode(.original)
.resizable()
.placeholder {
Asset.avatar.image
.resizable()
.renderingMode(.original)
}
.indicator(Indicator { _, _ in EmptyView()}) // or .indicator(.activity)
.animation(.easeInOut(duration: 0.2))
.transition(.fade)
No animations occur:
WebImage(url: url)
.renderingMode(.original)
.resizable()
.placeholder {
Asset.avatar.image
.resizable()
.renderingMode(.original)
}
.animation(.easeInOut(duration: 0.2))
.transition(.fade)