2023-03-11 18:30:33 +01:00
|
|
|
//
|
|
|
|
// https://mczachurski.dev
|
|
|
|
// Copyright © 2023 Marcin Czachurski and the repository contributors.
|
|
|
|
// Licensed under the MIT License.
|
|
|
|
//
|
|
|
|
|
|
|
|
import WidgetKit
|
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
struct VernissageWidget: Widget {
|
|
|
|
let kind: String = "VernissageWidget"
|
|
|
|
|
|
|
|
var body: some WidgetConfiguration {
|
|
|
|
StaticConfiguration(kind: kind, provider: Provider()) { entry in
|
|
|
|
VernissageWidgetEntryView(entry: entry)
|
|
|
|
}
|
|
|
|
.configurationDisplayName("Vernissage")
|
2023-03-13 13:53:36 +01:00
|
|
|
.description("widget.title.description")
|
2023-03-11 18:30:33 +01:00
|
|
|
.supportedFamilies([.systemSmall, .systemMedium, .systemLarge])
|
|
|
|
}
|
|
|
|
}
|