We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c5aafe4 + e816262 commit dfb2881Copy full SHA for dfb2881
WooCommerce/Classes/ViewRelated/Dashboard/MyStore/TopPerformersView.swift
@@ -67,6 +67,10 @@ struct TopPerformersRow: View {
67
///
68
let imageURL: URL?
69
70
+ /// Image placeholder.
71
+ ///
72
+ let placeHolder = UIImage.productPlaceholderImage
73
+
74
/// Item name or title.
75
76
let name: String
@@ -92,6 +96,7 @@ struct TopPerformersRow: View {
92
96
AdaptiveStack(horizontalAlignment: .leading, verticalAlignment: .top) {
93
97
// Image
94
98
KFImage(data.imageURL)
99
+ .placeholder { Image(uiImage: data.placeHolder).foregroundColor(Color(.listIcon)) }
95
100
.resizable()
101
.frame(width: imageWidth, height: imageWidth)
102
.cornerRadius(Layout.imageCornerRadius)
0 commit comments