Skip to content

Instantly share code, notes, and snippets.

@khannah
Last active February 11, 2021 09:30
Show Gist options
  • Save khannah/2d011a927576b4f367439c6209987d64 to your computer and use it in GitHub Desktop.
Save khannah/2d011a927576b4f367439c6209987d64 to your computer and use it in GitHub Desktop.
struct ArticleWidget_Previews: PreviewProvider {
static var previews: some View {
Group {
ArticleWidgetEntryView(entry: ArticleEntry(date: Date(),
topStories: Article.topStories,
trendingStories: Article.trendingStories))
.previewContext(WidgetPreviewContext(family: .systemMedium))
ArticleWidgetEntryView(entry: ArticleEntry(date: Date(),
topStories: Article.topStories,
trendingStories:Article.trendingStories))
.previewContext(WidgetPreviewContext(family: .systemLarge))
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment