File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
BDKSwiftExampleWallet/View Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,8 @@ struct OnboardingView: View {
40
40
. tint ( . secondary)
41
41
. font ( . title)
42
42
. opacity ( animateContent ? 1 : 0 )
43
- . animation ( . easeOut( duration: 0.5 ) . delay ( 1.2 ) , value: animateContent)
43
+ . offset ( x: animateContent ? 0 : 100 )
44
+ . animation ( . spring( response: 0.6 , dampingFraction: 0.7 ) . delay ( 1.2 ) , value: animateContent)
44
45
45
46
Button {
46
47
if let clipboardContent = UIPasteboard . general. string {
@@ -53,7 +54,8 @@ struct OnboardingView: View {
53
54
. tint ( . secondary)
54
55
. font ( . title)
55
56
. opacity ( animateContent ? 1 : 0 )
56
- . animation ( . easeOut( duration: 0.5 ) . delay ( 1.2 ) , value: animateContent)
57
+ . offset ( x: animateContent ? 0 : 100 )
58
+ . animation ( . spring( response: 0.6 , dampingFraction: 0.7 ) . delay ( 1.3 ) , value: animateContent)
57
59
} else {
58
60
Button {
59
61
viewModel. words = " "
You can’t perform that action at this time.
0 commit comments