WidgetKit crash on iOS Simulator

I'm trying to add a widget to my SwiftUI Application. I've made a Widget Extension in my App. Upon running the target in the simulator, this error appears in the console:
Code Block
ClipperWidgetExtension[7343:594354] Fatal error: PlatformViewRepresentableAdaptor<ListRepresentable<SystemListDataSource<Never>, SelectionManagerBox<Never>>>: file /Library/Caches/com.apple.xbs/Sources/Chrono_Sim/Chrono-63.5/WidgetKit/SPI/WidgetViewArchive.swift, line 254

The line that Xcode brings my attention to is this:
Code Block
completion(Timeline(entries: [SimpleEntry()], policy: .never))

The whole code for my timeline provider and entry:
Code Block
struct Provider: TimelineProvider {
    public typealias Entry = SimpleEntry
    public func snapshot(with context: Context, completion: @escaping (SimpleEntry) -> ()) {
        let entry = SimpleEntry()
        completion(entry)
    }
    public func timeline(with context: Context, completion: @escaping (Timeline<Entry>) -> ()) {
        completion(Timeline(entries: [SimpleEntry()], policy: .never))
    }
}
struct SimpleEntry: TimelineEntry {
    var date: Date = Date()
}


Any help would be appreciated :)

Does your view have any interactive views, or views that are backed by UIKit views?

If not, can you please submit a feedback with the sample project that's crashing? Thank you.

Does your view have any interactive views, or views that are backed by UIKit views?
If not, can you please submit a feedback with the sample project that's crashing? Thank you.

It does have an interactive view, I just ported it over from my main project for some testing. I was aware that interactive elements 'weren't allowed'. But I wasn't aware that it caused a crash
WidgetKit crash on iOS Simulator
 
 
Q