mirror of
https://github.com/lumaa-dev/BubbleApp.git
synced 2025-01-01 03:27:24 +01:00
19 lines
310 B
Swift
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()
|
|
}
|
|
}
|
|
}
|