I have some simple circular complications, that use a ZStack with SFSymbols.
On high contrast Watch Faces, I noted that the circle is slightly off to the top leading side.
I tried to set the ZStack alignment to center, fiddled around with Spacers, but I could not get it centered.
Is that a bug or am I missing something?
struct CircularWidgetDashed: View {
var entry: Provider.Entry
var body: some View {
ZStack {
Image(systemName: "circle.dashed")
.resizable()
.scaledToFit()
.foregroundColor(.green)
Text("\(entry.online)/\(entry.total)")
.foregroundStyle(.primary)
.font(.caption)
.fontWeight(.semibold)
}
.widgetAccentable()
}
}
3
0
115