You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
376 B
23 lines
376 B
2 years ago
|
//
|
||
|
// WidgetBundle.swift
|
||
|
// JustOneThing
|
||
|
//
|
||
|
// Created by Alan Francis on 06/07/2023.
|
||
|
//
|
||
|
|
||
|
import SwiftUI
|
||
|
import WidgetKit
|
||
|
|
||
|
@main
|
||
|
struct JustOneThingWidgetBundle: WidgetBundle {
|
||
|
var body: some Widget {
|
||
|
#if !os(watchOS)
|
||
|
JustOneThingSystemWidget()
|
||
|
#endif
|
||
|
|
||
|
#if !os(macOS)
|
||
|
JustOneThingAccessoryWidget()
|
||
|
#endif
|
||
|
}
|
||
|
}
|