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

# symbolEffectsRemoved(_:)

Returns a new view with its inherited symbol image effects
either removed or left unchanged.

```
@export(implementation) nonisolated func symbolEffectsRemoved(_ isEnabled: Bool = true) -> some View
```

## Parameters

`isEnabled`

Whether to remove inherited symbol
effects or not.

## Return Value

a copy of the view with its symbol effects either
removed or left unchanged.

## Discussion

The following example adds a repeating pulse effect to two
symbol images, but then disables the effect on one of them:

```
VStack {
    Image(systemName: "bolt.slash.fill") // does not pulse
        .symbolEffectsRemoved()
    Image(systemName: "folder.fill.badge.person.crop") // pulses
}
.symbolEffect(.pulse)
```

---

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)