Initial commit: EzTimer iOS app with widget extension

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-19 22:10:34 -05:00
commit 99e7e79347
73 changed files with 2447 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
//
// AppIntent.swift
// EzTimerWidget
//
// Created by Jared Evans on 12/17/25.
//
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
}