15 lines
370 B
Swift
15 lines
370 B
Swift
import WidgetKit
|
|
import Foundation
|
|
|
|
struct WidgetEntry: TimelineEntry {
|
|
let date: Date
|
|
let configuration: ConfigurationAppIntent
|
|
let completionRate: Double
|
|
let currentStreak: Int
|
|
let nextHabits: [HabitEntry]
|
|
let weeklyTrend: [Double]
|
|
let currentTimeOfDay: String
|
|
let currentTimeOfDaySymbol: String
|
|
let currentTimeOfDayRange: String
|
|
}
|