We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bccb5fe commit e9a1933Copy full SHA for e9a1933
1 file changed
Bitkit/Views/Transfer/FundManualAmountView.swift
@@ -24,11 +24,15 @@ struct FundManualAmountView: View {
24
DisplayText(t("lightning__external_amount__title"), accentColor: .purpleAccent)
25
.fixedSize(horizontal: false, vertical: true)
26
27
- NumberPadTextField(viewModel: amountViewModel, showConversion: false)
28
- .onTapGesture {
29
- amountViewModel.togglePrimaryDisplay(currency: currency)
30
- }
31
- .padding(.vertical, 32)
+ NumberPadTextField(
+ viewModel: amountViewModel,
+ showConversion: false,
+ testIdentifier: "ExternalAmountNumberField"
+ )
32
+ .onTapGesture {
33
+ amountViewModel.togglePrimaryDisplay(currency: currency)
34
+ }
35
+ .padding(.vertical, 32)
36
37
Spacer()
38
0 commit comments