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.
JustOneThing/WidgetShared/WidgetBundle.swift

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
}
}