.github
android
assets
ios
Flutter
Runner
Runner.xcodeproj
Runner.xcworkspace
RunnerTests
SolarNotifyService
SolarShare
SolarWidget
Assets.xcassets
CheckInWidget.swift
Info.plist
RandomPostWidget.swift
SolarWidgetBundle.swift
.gitignore
Podfile
Podfile.lock
SolarWidgetExtension.entitlements
lib
linux
macos
snap
web
windows
.gitignore
.metadata
.roadsignrc
analysis_options.yaml
build.yaml
devtools_options.yaml
firebase.json
pubspec.lock
pubspec.yaml
roadsign.toml
18 lines
263 B
Swift
18 lines
263 B
Swift
//
|
|
// SolarWidgetBundle.swift
|
|
// SolarWidget
|
|
//
|
|
// Created by LittleSheep on 2024/12/14.
|
|
//
|
|
|
|
import WidgetKit
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct SolarWidgetBundle: WidgetBundle {
|
|
var body: some Widget {
|
|
CheckInWidget()
|
|
RandomPostWidget()
|
|
}
|
|
}
|