mirror of
https://github.com/lumaa-dev/BubbleApp.git
synced 2025-01-16 19:02:11 +01:00
19 lines
312 B
Swift
19 lines
312 B
Swift
//Made by Lumaa
|
|
|
|
import WidgetKit
|
|
import SwiftUI
|
|
import UIKit
|
|
|
|
@main
|
|
struct ThreadedWidgetsBundle: WidgetBundle {
|
|
var body: some Widget {
|
|
FollowCountWidget()
|
|
FollowGoalWidget()
|
|
CreatePostWidget()
|
|
|
|
if #available(iOS 18.0, *) {
|
|
CreatePostControl()
|
|
}
|
|
}
|
|
}
|