10 lines
329 B
Swift
10 lines
329 B
Swift
import WidgetKit
|
|
import AppIntents
|
|
|
|
struct ConfigurationAppIntent: WidgetConfigurationIntent {
|
|
static var title: LocalizedStringResource { "Andromida" }
|
|
static var description: IntentDescription { "Track your daily rituals and habits." }
|
|
|
|
// We can add more parameters here later, like selecting a specific ritual.
|
|
}
|