Post

Replies

Boosts

Views

Activity

Reply to Gauge View text size of standard template not achievable in SwiftUI
Thanks for the quick response! So previously I was unable to get the minimumScaleFactor to work. This is good. However, I still took your exact code and put it in a complication template. The text labels don't have spacing between them as with the stock complication. It won't let me post an image here or link to one, but either way, take the exact Gauge you had above, and wrap it in a preview and compare with the stock one shown in the preview, the text sizes and positions are significantly different. @available(watchOSApplicationExtension 7.0, *) struct GaugeSample_Previews: PreviewProvider {     static var previews: some View {         CLKComplicationTemplateGraphicCircularView(TestGauge())                 .previewContext() } } Also, completely separately, what's the purpose of the Image(systemName: "heart.fill") in your code, this has no effect for me?
Sep ’20
Reply to Failed to save complication bundle.
Apple Documentation explicitly states: "if you want your placeholders to appear in the Face Gallery, you must provide a complication bundle that contains your placeholders." https://developer.apple.com/documentation/clockkit/creating_complications_for_your_watchos_app/adding_placeholders_for_your_complication Can we please get some further detail here?
Sep ’20
Reply to How often do I schedule Widget updates?
Edorphy, I'm not sure I can really comment on iOS 12.2, though I suspect Apple will only really investigate bugs with iOS 14 currently.... I've not bothered with a HKObserverQuery in the end as I wasn't able to get it to work reliably. Instead I just use the Widget update callbacks to do fresh HKSampleQueries. Regards Simon
Jan ’21