Skip to content

Instantly share code, notes, and snippets.

@SergLam
Created March 31, 2025 14:32
Show Gist options
  • Save SergLam/9e34763fd44314fa9fa3d18339debf4b to your computer and use it in GitHub Desktop.
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.
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