I am following the widgets code along Fromm wwdc 2020 and in the first part they mentioned using the new Placeholder api with .isPlacholder
. So I tried implementing it in my widget like this:
struct PlaceholderView: View {
var body: some View {
RandomWidgetView(book: testBook)
.isPlaceholder(true)
}
}
however I get the error Value of type 'RandomWidgetView' has no member 'isPlaceholder'
. After googling I found this:
struct PlaceholderView: View {
var body: some View {
RandomWidgetView(book: testBook)
.redacted(reason: .placeholder)
}
}
However this doesn't create the correct placeholders but instead just removes the views inside completely.
Am I missing an import or was it changed since wwdc? How do I create the correct placeholders?
The initial
.isPlaceholder(_:)
API had changed in the iOS 14 beta 3 to.redacted(reason:)
API and this is the reason the compiler does not recognise theisPlaceholder
calls.Here is how to use it correctly: How to mark content as a placeholder using redacted()