81 lines
2.5 KiB
Swift
81 lines
2.5 KiB
Swift
//
|
|
// MyWidgetHomeLiveActivity.swift
|
|
// MyWidgetHome
|
|
//
|
|
// Created by Hamza Aleghwairyeen on 11/05/2025.
|
|
//
|
|
|
|
import ActivityKit
|
|
import WidgetKit
|
|
import SwiftUI
|
|
|
|
struct MyWidgetHomeAttributes: ActivityAttributes {
|
|
public struct ContentState: Codable, Hashable {
|
|
// Dynamic stateful properties about your activity go here!
|
|
var emoji: String
|
|
}
|
|
|
|
// Fixed non-changing properties about your activity go here!
|
|
var name: String
|
|
}
|
|
|
|
struct MyWidgetHomeLiveActivity: Widget {
|
|
var body: some WidgetConfiguration {
|
|
ActivityConfiguration(for: MyWidgetHomeAttributes.self) { context in
|
|
// Lock screen/banner UI goes here
|
|
VStack {
|
|
Text("Hello \(context.state.emoji)")
|
|
}
|
|
.activityBackgroundTint(Color.cyan)
|
|
.activitySystemActionForegroundColor(Color.black)
|
|
|
|
} dynamicIsland: { context in
|
|
DynamicIsland {
|
|
// Expanded UI goes here. Compose the expanded UI through
|
|
// various regions, like leading/trailing/center/bottom
|
|
DynamicIslandExpandedRegion(.leading) {
|
|
Text("Leading")
|
|
}
|
|
DynamicIslandExpandedRegion(.trailing) {
|
|
Text("Trailing")
|
|
}
|
|
DynamicIslandExpandedRegion(.bottom) {
|
|
Text("Bottom \(context.state.emoji)")
|
|
// more content
|
|
}
|
|
} compactLeading: {
|
|
Text("L")
|
|
} compactTrailing: {
|
|
Text("T \(context.state.emoji)")
|
|
} minimal: {
|
|
Text(context.state.emoji)
|
|
}
|
|
.widgetURL(URL(string: "http://www.apple.com"))
|
|
.keylineTint(Color.red)
|
|
}
|
|
}
|
|
}
|
|
|
|
extension MyWidgetHomeAttributes {
|
|
fileprivate static var preview: MyWidgetHomeAttributes {
|
|
MyWidgetHomeAttributes(name: "World")
|
|
}
|
|
}
|
|
|
|
extension MyWidgetHomeAttributes.ContentState {
|
|
fileprivate static var smiley: MyWidgetHomeAttributes.ContentState {
|
|
MyWidgetHomeAttributes.ContentState(emoji: "😀")
|
|
}
|
|
|
|
fileprivate static var starEyes: MyWidgetHomeAttributes.ContentState {
|
|
MyWidgetHomeAttributes.ContentState(emoji: "🤩")
|
|
}
|
|
}
|
|
|
|
#Preview("Notification", as: .content, using: MyWidgetHomeAttributes.preview) {
|
|
MyWidgetHomeLiveActivity()
|
|
} contentStates: {
|
|
MyWidgetHomeAttributes.ContentState.smiley
|
|
MyWidgetHomeAttributes.ContentState.starEyes
|
|
}
|