mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-13 04:51:21 +00:00
21 lines
635 B
Swift
21 lines
635 B
Swift
import AppIntents
|
|
import WidgetKit
|
|
|
|
struct ListsWidgetConfiguration: WidgetConfigurationIntent {
|
|
static let title: LocalizedStringResource = "Configuration"
|
|
static let description = IntentDescription("Choose the account and list for this widget")
|
|
|
|
@Parameter(title: "Account")
|
|
var account: AppAccountEntity
|
|
|
|
@Parameter(title: "List")
|
|
var timeline: ListEntity
|
|
}
|
|
|
|
extension ListsWidgetConfiguration {
|
|
static var previewAccount: LatestPostsWidgetConfiguration {
|
|
let intent = LatestPostsWidgetConfiguration()
|
|
intent.account = .init(account: .init(server: "Test", accountName: "Test account"))
|
|
return intent
|
|
}
|
|
}
|