How to use Link in WidgetKit to define arbitrary regions, not just text links?

In the session "Widgets Code Along Part 2" in WWDC 2020, the presenter says:

Widgets do not have animation or custom interactions, but we can deep link from our widget into our app. SystemSmall widgets are one large tap area, while systemMedium and systemLarge can use the new SwiftUI link API to create tappable zones within the widget.

This suggests that I should be able to designate regions of my widget as tappable that lead to a given URL in my app. But the Link API just takes a string title and a destination URL - it doesn't appear to be able to embed other arbitrary views like images.

How do I use the Link API to designate regions of my widget as tappable, instead of just text links?
Yep, you don't need the title. I use this:
Code Block swift
ZStack {
Link(destination: event.url) {
VStack(alignment: .center) {
Spacer()
// View content...
}
}
}

How to use Link in WidgetKit to define arbitrary regions, not just text links?
 
 
Q