forked from fritob/Camper-Monitor
VanControlWidget.swift, VanControlWidgetControl.swift und AppIntent.swift
waren unverändertes Xcode-Vorlagenmaterial ("Favorite Emoji", "This is
an example widget", ein Timer-Control ohne echte Funktion) – nie an die
App angebunden. Die Extension bleibt bestehen, weil die Live Activity
(VanControlWidgetLiveActivity, echte Neigungswerte) dort hinein muss;
das Bundle enthält jetzt nur noch sie.
Build (Debug + Release) grün.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
17 lines
272 B
Swift
17 lines
272 B
Swift
//
|
|
// VanControlWidgetBundle.swift
|
|
// VanControlWidget
|
|
//
|
|
// Created by Christopher Helberg on 02.09.26.
|
|
//
|
|
|
|
import WidgetKit
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct VanControlWidgetBundle: WidgetBundle {
|
|
var body: some Widget {
|
|
VanControlWidgetLiveActivity()
|
|
}
|
|
}
|