Meshtastic-Apple/Widgets/WidgetsBundle.swift

22 lines
333 B
Swift
Raw Normal View History

//
// WidgetsBundle.swift
// Widgets
//
// Created by Garth Vander Houwen on 2/28/23.
//
import WidgetKit
import SwiftUI
@available(iOSApplicationExtension 16.2, *)
@main
struct WidgetsBundle: WidgetBundle {
var body: some Widget {
2023-03-06 10:33:18 -08:00
// Widgets()
#if canImport(ActivityKit)
WidgetsLiveActivity()
#endif
2023-03-06 10:33:18 -08:00
}
}