Skip to content

Commit 0e79f57

Browse files
committed
ui: walletview remove bitcoin text
1 parent 5d58dd6 commit 0e79f57

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

BDKSwiftExampleWallet/View/WalletView.swift

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import SwiftUI
1212
struct 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 {

0 commit comments

Comments
 (0)