File tree 4 files changed +2
-13
lines changed
BDKSwiftExampleWallet/View
4 files changed +2
-13
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ import SwiftUI
12
12
struct WalletView : View {
13
13
@Bindable var viewModel : WalletViewModel
14
14
@Binding var sendNavigationPath : NavigationPath
15
- @State private var isAnimating : Bool = false
16
15
@State private var isFirstAppear = true
17
16
@State private var newTransactionSent = false
18
17
@State private var showAllTransactions = false
@@ -28,16 +27,6 @@ struct WalletView: View {
28
27
VStack ( spacing: 20 ) {
29
28
30
29
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
- }
41
30
withAnimation {
42
31
HStack ( spacing: 15 ) {
43
32
Image ( systemName: " bitcoinsign " )
@@ -89,7 +78,7 @@ struct WalletView: View {
89
78
value: viewModel. walletSyncState
90
79
)
91
80
}
92
- . padding ( . vertical, 20 .0)
81
+ . padding ( . vertical, 35 .0)
93
82
94
83
VStack {
95
84
HStack {
Original file line number Diff line number Diff line change 4
4
5
5
A native iOS app example using [ Bitcoin Dev Kit] ( https://github.com/bitcoindevkit ) via [ language bindings] ( https://github.com/bitcoindevkit/bdk-ffi ) .
6
6
7
- <img src =" Docs/bitcoin-home-screen .png " alt =" Screenshot " width =" 210.5 " height =" 420 " >
7
+ <img src =" Docs/bitcoin-walletview .png " alt =" Screenshot " width =" 210.5 " height =" 420 " >
8
8
9
9
Download the app on [ TestFlight] ( https://testflight.apple.com/join/A3nAuYvZ ) .
10
10
You can’t perform that action at this time.
0 commit comments