[AltWidget] Refactors widgets into separate files

This commit is contained in:
Riley Testut
2023-08-31 13:50:27 -05:00
parent 1940fbd60f
commit c7932bf7b1
7 changed files with 196 additions and 142 deletions

View File

@@ -0,0 +1,21 @@
//
// 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()
}
}