I'm trying to implement WidgetKit on my watchOS 9.1 app. When I'm editing the watch face, I see the widget looking as I would expect it to be. However, when I then go to the Home Screen, the data is redacted.
What's causing that to happen? I don't do anything luminance or security related in the widget's view:
struct AccessoryRectangularView: View {
let tide: Tide
var body: some View {
HStack {
VStack(alignment: .leading) {
Text("Height: \(tide.heightString())")
.font(.headline)
.widgetAccentable()
Text("As of: \(tide.date, style: .time)")
.font(.caption)
}
tide.image()
}
}
}