Created
March 31, 2025 14:32
-
-
Save SergLam/9e34763fd44314fa9fa3d18339debf4b to your computer and use it in GitHub Desktop.
Fix for "Publishing changes from within view updates is not allowed" SwiftUI console error.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SwiftUI | |
public extension View { | |
/// Extension to sync local `@State` var with external `Binding`. | |
/// | |
/// Binding to `@Published` property of `ObservableObject` causes warning | |
/// | |
/// Publishing changes from within view updates is not allowed. | |
func sync<T: Equatable>(_ external: Binding<T>, with local: Binding<T>) -> some View { | |
onChange(of: external.wrappedValue) { _, newValue in | |
local.wrappedValue = newValue | |
} | |
.onChange(of: local.wrappedValue) { _, newValue in | |
external.wrappedValue = newValue | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment