feat: add PlatformWidget extension target
All checks were successful
Security Checks / dependency-audit (push) Successful in 13s
Security Checks / secret-scanning (push) Successful in 4s
Security Checks / dockerfile-lint (push) Successful in 3s

This commit is contained in:
2026-04-04 11:19:18 -05:00
parent c13259c2b5
commit a4ebe77973
10 changed files with 297 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import WidgetKit
import SwiftUI
@main
struct PlatformWidgetBundle: WidgetBundle {
var body: some Widget {
PlatformWidget()
}
}