2024-03-07 17:22:11 +01:00
|
|
|
//Made by Lumaa
|
|
|
|
|
|
|
|
import WidgetKit
|
|
|
|
import SwiftUI
|
|
|
|
import UIKit
|
|
|
|
|
|
|
|
@main
|
|
|
|
struct ThreadedWidgetsBundle: WidgetBundle {
|
|
|
|
var body: some Widget {
|
|
|
|
FollowCountWidget()
|
2024-03-07 18:26:53 +01:00
|
|
|
FollowGoalWidget()
|
2024-08-11 00:53:57 +02:00
|
|
|
CreatePostWidget()
|
|
|
|
|
|
|
|
if #available(iOS 18.0, *) {
|
|
|
|
CreatePostControl()
|
|
|
|
}
|
2024-03-07 17:22:11 +01:00
|
|
|
}
|
|
|
|
}
|