---
title: "symbolEffectsRemoved(_:)"
framework: swiftui
role: symbol
role_heading: Instance Method
path: "swiftui/view/symboleffectsremoved(_:)"
---

# symbolEffectsRemoved(_:)

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

## Declaration

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

```

## Parameters

- `isEnabled`: Whether to remove inherited symbol effects or not.

## Return Value

Return Value A copy of the view with its symbol effects either removed or left unchanged.

## Discussion

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)

## See Also

### Managing symbol effects

- [symbolEffect(_:options:isActive:)](swiftui/view/symboleffect(_:options:isactive:).md)
- [symbolEffect(_:options:value:)](swiftui/view/symboleffect(_:options:value:).md)
- [SymbolEffectTransition](swiftui/symboleffecttransition.md)
