Files
platform/ios/Platform/PlatformWidget/PlatformWidgetBundle.swift
Yusuf a4ebe77973
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
feat: add PlatformWidget extension target
2026-04-04 11:19:18 -05:00

10 lines
144 B
Swift

import WidgetKit
import SwiftUI
@main
struct PlatformWidgetBundle: WidgetBundle {
var body: some Widget {
PlatformWidget()
}
}