Skip to content

Commit ed0f63a

Browse files
committed
ui: footnote on seedview
1 parent bce8528 commit ed0f63a

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

BDKSwiftExampleWallet/Resources/Localizable.xcstrings

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -518,6 +518,9 @@
518518
}
519519
}
520520
}
521+
},
522+
"Please make sure to write it down and store it securely." : {
523+
521524
},
522525
"powered by Bitcoin Dev Kit" : {
523526

@@ -573,6 +576,9 @@
573576
}
574577
}
575578
}
579+
},
580+
"Seed is not synced across devices." : {
581+
576582
},
577583
"Select Bitcoin Network" : {
578584

BDKSwiftExampleWallet/View/Settings/SeedView.swift

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ struct SeedView: View {
1414
@State private var showCheckmark = false
1515

1616
var body: some View {
17+
1718
ZStack {
1819
Color(uiColor: .systemBackground)
1920
.ignoresSafeArea()
@@ -28,6 +29,15 @@ struct SeedView: View {
2829
wordsPerPage: 4
2930
)
3031

32+
VStack {
33+
Text("Seed is not synced across devices.")
34+
Text("Please make sure to write it down and store it securely.")
35+
}
36+
.font(.caption)
37+
.foregroundStyle(.secondary)
38+
.multilineTextAlignment(.center)
39+
.padding()
40+
3141
HStack {
3242
Spacer()
3343
Button {

0 commit comments

Comments
 (0)