mirror of
https://github.com/XITRIX/iTorrent.git
synced 2026-05-30 11:46:50 +00:00
20 lines
341 B
Swift
20 lines
341 B
Swift
//
|
||
// ProgressWidgetBundle.swift
|
||
// ProgressWidget
|
||
//
|
||
// Created by Даниил Виноградов on 06.04.2024.
|
||
//
|
||
|
||
import SwiftUI
|
||
import WidgetKit
|
||
|
||
@main
|
||
struct ProgressWidgetBundle: WidgetBundle {
|
||
var body: some Widget {
|
||
// ProgressWidget()
|
||
#if canImport(ActivityKit)
|
||
ProgressWidgetLiveActivity()
|
||
#endif
|
||
}
|
||
}
|