diff --git a/Session/Settings/RecoveryPasswordScreen.swift b/Session/Settings/RecoveryPasswordScreen.swift index 828f583b4..89c2e9126 100644 --- a/Session/Settings/RecoveryPasswordScreen.swift +++ b/Session/Settings/RecoveryPasswordScreen.swift @@ -86,7 +86,9 @@ struct RecoveryPasswordScreen: View { ZStack(alignment: .center) { Button { - self.showQRCode.toggle() + withAnimation(.spring()) { + self.showQRCode.toggle() + } } label: { Text("recoveryPasswordView".localized()) .bold() @@ -160,7 +162,9 @@ struct RecoveryPasswordScreen: View { Spacer(minLength: Values.veryLargeSpacing) Button { - self.showQRCode.toggle() + withAnimation(.spring()) { + self.showQRCode.toggle() + } } label: { Text("qrView".localized()) .bold()