mirror of
https://github.com/neon443/NearFuture.git
synced 2026-03-12 06:56:16 +00:00
animations!!!!!!!!! on add, delete and ticking yayy sorts on load extract contentview to HomeView, its got too indented loll
19 lines
458 B
Swift
19 lines
458 B
Swift
//
|
|
// AppIntent.swift
|
|
// NearFutureWidgets
|
|
//
|
|
// Created by neon443 on 02/01/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
|
|
}
|