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.
22 lines
376 B
22 lines
376 B
//
|
|
// 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
|
|
}
|
|
}
|
|
|