mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
20 lines
289 B
Swift
20 lines
289 B
Swift
//
|
|
// WidgetsBundle.swift
|
|
// Widgets
|
|
//
|
|
// Created by Garth Vander Houwen on 2/28/23.
|
|
//
|
|
|
|
import WidgetKit
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct WidgetsBundle: WidgetBundle {
|
|
var body: some Widget {
|
|
// Widgets()
|
|
#if canImport(ActivityKit)
|
|
WidgetsLiveActivity()
|
|
#endif
|
|
|
|
}
|
|
}
|