Skip to content

Instantly share code, notes, and snippets.

@EvolverSwiftUI
Forked from pallavtrivedi03/BoxOfficeWidget.swift
Created February 11, 2022 18:18
Show Gist options
  • Save EvolverSwiftUI/a425bb60625b959453ef6ceb5d019e48 to your computer and use it in GitHub Desktop.
Save EvolverSwiftUI/a425bb60625b959453ef6ceb5d019e48 to your computer and use it in GitHub Desktop.
@main
struct BoxOfficeWidget: Widget {
let kind: String = "BoxOfficeWidget"
var body: some WidgetConfiguration {
StaticConfiguration(kind: kind, provider: Provider()) { entry in
BoxOfficeWidgetEntryView(entry: entry)
}
.configurationDisplayName("Box Office")
.description("Box office collection of latest movies")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment