25-5-10/1

This commit is contained in:
Hamza-Ayed
2025-05-11 00:03:19 +03:00
parent 801f26eb18
commit bdf380b925
21 changed files with 1117 additions and 144 deletions

View File

@@ -0,0 +1,18 @@
//
// AppIntent.swift
// MyWidgetHome
//
// Created by Hamza Aleghwairyeen on 11/05/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
}