Post

Replies

Boosts

Views

Activity

Reply to WidgetKit configurationDisplayName localization
Hi, Try using LocalizedStringKey to localize the configurationDisplayName. Use the following method to set the configuration display name, public func configurationDisplayName(_ displayNameKey: LocalizedStringKey) -> some WidgetConfiguration Eg., IntentConfiguration(kind: "<String>", intent: <your-intent>, provider: <intent-provider>) { entry in   <your-view>    }  .configurationDisplayName(<key-for-your-localized-text>)  .description(<key-for-your-localized-text>) Hope this should help.
Oct ’20