How to change view on midnight in WidgetKit, SwiftUI?
问题 I have a code: struct ContentView: View { let entry: LessonWidgetEntry private static let url: URL = URL(string: "widgetUrl")! var body: some View { VStack { switch entry.state { case .none: ProgramNotStartedView() case .currentLesson(let lesson): LessonView(lesson: lesson, imageName: entry.program?.imageName) case .lessonCompleted(let lesson): LessonCompletedView(lesson: lesson) case .programCompleted: ProgramCompletedView() } }.widgetURL(ContentView.url) } } At midnight LessonCompletedView