How should i solve this animation issues?

With my little experience,
I saw some codes, they put the withAnimation inside onTapGesture()

        .onTapGesture {
            
            withAnimation(.default) {
                self.flipped.toggle()
            }
            
        }

But I haven’t yet encounter a case where I need to set different animation for each of composite components

1 Like

There is no value look for the one with value
.animation(.default,value:show)

1 Like

thanks