mirror of
https://github.com/gskinnerTeam/flutter-wonderous-app.git
synced 2025-08-06 18:24:29 +08:00
13 lines
234 B
Swift
13 lines
234 B
Swift
import WidgetKit
|
|
import SwiftUI
|
|
|
|
// WonderousWidgetBundle
|
|
// -> WonderousWidgetView
|
|
// -> WonderousWidgetViewComponents
|
|
@main
|
|
struct WonderousWidgetBundle: WidgetBundle {
|
|
var body: some Widget {
|
|
WonderousWidget()
|
|
}
|
|
}
|