mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-08 22:33:26 +01:00
27 lines
460 B
Swift
27 lines
460 B
Swift
//
|
|
// AltWidgetBundle.swift
|
|
// AltWidgetExtension
|
|
//
|
|
// Created by Riley Testut on 8/22/23.
|
|
// Copyright © 2023 Riley Testut. All rights reserved.
|
|
//
|
|
|
|
import SwiftUI
|
|
import WidgetKit
|
|
|
|
@main
|
|
struct AltWidgetBundle: WidgetBundle
|
|
{
|
|
var body: some Widget {
|
|
AppDetailWidget()
|
|
|
|
IconLockScreenWidget()
|
|
TextLockScreenWidget()
|
|
|
|
if #available(iOS 17, *)
|
|
{
|
|
ActiveAppsWidget()
|
|
}
|
|
}
|
|
}
|