Regarding the rounded corners of Views within a Widget

Hello, I'm researching the functionality of widgets and came across a question while reading the official documentation. According to the following link, it says, "Coordinate the corner radius of your content with the corner radius of the widget." https://developer.apple.com/design/human-interface-guidelines/widgets#Previews-and-placeholders

Does this mean that the framework of the widget should have rounded corners, and it is not necessary for Views within the widget to always have rounded corners? For example, if I want to place a square image in the widget, do I need to implement it so that the image has rounded corners?

If anyone knows, could you please provide some guidance? Thank you very much.

The widget applies rounded corners. The documentation is basically saying that you shouldn't put something important in the corner because it's going to be cut off.

You do not need to add rounded corners yourself.

Regarding the rounded corners of Views within a Widget
 
 
Q