| 1234567891011121314151617 |
- import ActivityKit
- import Foundation
- struct LiveActivityAttributes: ActivityAttributes {
- public struct ContentState: Codable, Hashable {
- let bg: String
- let trendSystemImage: String?
- let change: String
- let date: Date
- let chart: [Int16]
- let chartDate: [Date?]
- let rotationDegrees: Double
- }
- let startDate: Date
- }
|