Meshtastic-Apple/Widgets/WidgetsBundle.swift
2023-03-01 23:49:38 -08:00

21 lines
340 B
Swift

//
// 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 {
//Widgets()
#if canImport(ActivityKit)
WidgetsLiveActivity()
#endif
}
}