I having a question about widget's configuration: configurationDisplayName and description. Can I change this value by an action from main app, and if I can, how can I do that? For example I tap a button and widget's name change.
Thank you.
Code Block var body: some WidgetConfiguration { return StaticConfiguration(kind: kind, provider: Provider()) { entry in WidgetView() } .configurationDisplayName("My Widget") .description("This is my widget") }
Thank you.