Bubble/ThreadedWidgets/ThreadedWidgetsBundle.swift

19 lines
312 B
Swift
Raw Normal View History

//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()
CreatePostWidget()
if #available(iOS 18.0, *) {
CreatePostControl()
}
}
}