Bubble/BubbleWidgets/BubbleWidgetsBundle.swift

19 lines
310 B
Swift
Raw Normal View History

//Made by Lumaa
import WidgetKit
import SwiftUI
import UIKit
@main
2024-09-15 15:15:46 +02:00
struct BubbleWidgetsBundle: WidgetBundle {
var body: some Widget {
FollowCountWidget()
2024-03-07 18:26:53 +01:00
FollowGoalWidget()
CreatePostWidget()
if #available(iOS 18.0, *) {
CreatePostControl()
}
}
}