I'm building a set of widgets that feature various emoji flags. However, when displayed in tinted mode, the emojis appear as solid white.
Is there a way to control or override the rendering mode of emojis in this context?
Any guidance would be very much appreciated. Thank you!
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Created
One of my apps includes a free weather forecast using WeatherKit. Recently, it started to get more downloads and almost reached the limits of the free tier.
I've removed the forecast in newer versions but there's still a substantial amount of users who do not update their apps.
Is it possible to somehow remove the capability from existing apps?
Thank you!
I've turned on Swift 6 language mode and noticed that during runtime Xcode gives this warning for a new widget (iOS 17.2):
warning: data race detected: @MainActor function at TestWidgetExtension/TestWidget.swift:240 was not called on the main thread
struct TestWidget: Widget {
let kind: String = "TestWidget"
var body: some WidgetConfiguration {
AppIntentConfiguration(
kind: kind,
intent: ConfigurationAppIntent.self,
provider: Provider()
) { entry in // LINE 240
TestWidgetEntryView(entry: entry)
.containerBackground(Color.white, for: .widget)
}
}
}
Is there any way to solve this on my side?
Thank you!