DFDefaultHomeWidget.swift 569 Bytes
//
//  DFDefaultHomeWidget.swift
//  hippo-watch-extension
//

import WidgetKit
import SwiftUI

struct DFDefaultHomeWidget: Widget {
    var body: some WidgetConfiguration {
        StaticConfiguration(kind: DFWatchFaceKind.defaultHome.widgetKind, provider: DFWatchFaceProvider(face: .defaultHome)) { entry in
            DFWatchFaceEntryView(entry: entry)
        }
        .configurationDisplayName(DFWatchFaceKind.defaultHome.displayName)
        .description(DFWatchFaceKind.defaultHome.description)
        .supportedFamilies(DFWatchSupportedFamilies.all)
    }
}