File tree Expand file tree Collapse file tree 1 file changed +1
-12
lines changed
BDKSwiftExampleWallet/View Expand file tree Collapse file tree 1 file changed +1
-12
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ import SwiftUI
1212struct WalletView : View {
1313 @Bindable var viewModel : WalletViewModel
1414 @Binding var sendNavigationPath : NavigationPath
15- @State private var isAnimating : Bool = false
1615 @State private var isFirstAppear = true
1716 @State private var newTransactionSent = false
1817 @State private var showAllTransactions = false
@@ -28,16 +27,6 @@ struct WalletView: View {
2827 VStack ( spacing: 20 ) {
2928
3029 VStack ( spacing: 10 ) {
31- Text ( " Bitcoin " . uppercased ( ) )
32- . fontWeight ( . semibold)
33- . fontWidth ( . expanded)
34- . foregroundStyle ( Color . bitcoinOrange)
35- . scaleEffect ( isAnimating ? 1.0 : 0.6 )
36- . onAppear {
37- withAnimation ( . easeOut( duration: 0.5 ) ) {
38- isAnimating = true
39- }
40- }
4130 withAnimation {
4231 HStack ( spacing: 15 ) {
4332 Image ( systemName: " bitcoinsign " )
@@ -89,7 +78,7 @@ struct WalletView: View {
8978 value: viewModel. walletSyncState
9079 )
9180 }
92- . padding ( . vertical, 20 .0)
81+ . padding ( . vertical, 35 .0)
9382
9483 VStack {
9584 HStack {
You can’t perform that action at this time.
0 commit comments