Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Patch
  • Loading branch information
muukii committed Jan 1, 2023
commit 3f66f84cf65a89fe2acfbdf83953af41c8b86b97
3 changes: 2 additions & 1 deletion Sources/SwiftUISupport/Components/OnChangeWithPrevious.swift
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ private struct ChangeModifier<Value: Equatable>: ViewModifier {
}

func body(content: Content) -> some View {
content
content
.blendMode(.normal) // For iOS <= 14, Modifier should have something another modifiers of appearances.
.onReceive(Just(value)) { newValue in

if emitsInitial, emitCount == 0 {
Expand Down