Bubble/BubbleWidgets/BubbleWidgetsBundle.swift
2024-09-15 15:15:46 +02:00

19 lines
310 B
Swift

//Made by Lumaa
import WidgetKit
import SwiftUI
import UIKit
@main
struct BubbleWidgetsBundle: WidgetBundle {
var body: some Widget {
FollowCountWidget()
FollowGoalWidget()
CreatePostWidget()
if #available(iOS 18.0, *) {
CreatePostControl()
}
}
}