2025-08-08 13:30:00 +03:00

19 lines
459 B
Swift

//
// AppIntent.swift
// FavoritesWidget
//
// Created by Platon on 08.08.2025.
//
import WidgetKit
import AppIntents
struct ConfigurationAppIntent: WidgetConfigurationIntent {
static var title: LocalizedStringResource { "Configuration" }
static var description: IntentDescription { "This is an example widget." }
// An example configurable parameter.
@Parameter(title: "Favorite Emoji", default: "😃")
var favoriteEmoji: String
}