We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d66386 commit 71178cbCopy full SHA for 71178cb
BDKSwiftExampleWallet/View/Activity/ActivityListView.swift
@@ -72,7 +72,7 @@ struct CustomSegmentedControl: View {
72
selection = mode
73
}
74
}) {
75
- Text(mode == .transactions ? "Transactions" : "Outputs")
+ Text(mode == .transactions ? "Transactions" : "Unspent")
76
.bold()
77
.foregroundColor(selection == mode ? .primary : .gray)
78
BDKSwiftExampleWallet/View/Activity/LocalOutputListView.swift
@@ -19,7 +19,7 @@ struct LocalOutputListView: View {
19
.listRowInsets(EdgeInsets())
20
.listRowSeparator(.hidden)
21
} else if localOutputs.isEmpty {
22
- Text("No Outputs")
+ Text("No Unspent")
23
.font(.subheadline)
24
25
0 commit comments