<!--
{
  "availability" : [
    "iOS: 17.0.0 -",
    "iPadOS: 17.0.0 -",
    "macCatalyst: 17.0.0 -",
    "visionOS: 26.0.0 -",
    "watchOS: 10.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "SwiftUI",
  "identifier" : "/documentation/SwiftUI/View/widgetCurvesContent(_:)",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "SwiftUI"
    ],
    "preciseIdentifier" : "s:7SwiftUI4ViewP9WidgetKitE19widgetCurvesContentyQrSbF"
  },
  "title" : "widgetCurvesContent(_:)"
}
-->

# widgetCurvesContent(_:)

Displays the widget’s content along a curve if the context allows it.

```
@MainActor @preconcurrency func widgetCurvesContent(_ curvesContent: Bool = true) -> some View
```

## Parameters

`curvesContent`

A Boolean value that indicates whether the
system curves the widget label’s content, if the context allows.

## Discussion

The system positions the widget’s content along a curve that follows the
corner of the watch face when displaying a <doc://com.apple.documentation/documentation/WidgetKit/WidgetFamily/accessoryCorner>
complication. The widget must use  a  <doc://com.apple.documentation/documentation/SwiftUI/View/widgetLabel(_:)-7wguh>
modifier, and the curving effect modifies only text, SF Symbols, and images.

When displaying an `.accessoryCorner` complication, the system places
the widget label on the inside of the curve, and the widget’s content on
the outside, as shown below.

```swift
var body: some View {
    Text("Hi")
        .widgetCurvesContent()
        .widgetLabel("World!")
}
```

![A screenshot of an Apple Watch face, showing a complication in the
upper-left corner with the words HI and WORLD curved around the
corner.](WidgetCurveContent-Text)

The system can also curve text, SF symbols, and image content from
a <doc://com.apple.documentation/documentation/SwiftUI/ViewThatFits>
view.

```swift
var body: some View {
    ViewThatFits {
        Text("Hello")
        Text("Hi")
    }
    .widgetCurvesContent()
    .widgetLabel("World!")
}
```

![A screenshot of an Apple Watch face, showing a complication in the
upper-left corner with the words HELLO and WORLD curved around the
corner.](WidgetCurveContent-ViewThatFits)

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)