20 lines
611 B
Swift
20 lines
611 B
Swift
//
|
|
// AppIntent.swift
|
|
// FavoritesWidget
|
|
//
|
|
// Created by Platon on 08.08.2025.
|
|
//
|
|
|
|
import WidgetKit
|
|
import AppIntents
|
|
|
|
struct ConfigurationAppIntent: WidgetConfigurationIntent, AppIntent {
|
|
static var title: LocalizedStringResource { "Конфигурация виджета" }
|
|
static var description: IntentDescription { "Выберите доску для загрузки в случае отсутствия доступа к данным приложения." }
|
|
|
|
@Parameter(title: "Код доски", default: "b")
|
|
var boardCode: String
|
|
|
|
static var openAppWhenRun: Bool { true }
|
|
}
|