File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
app/src/main/java/to/bitkit/ui/screens/transfer Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -134,24 +134,26 @@ private fun Content(
134134 primaryDisplay = currencies.primaryDisplay,
135135 modifier = Modifier
136136 .fillMaxWidth()
137- // .testTag("SendNumberField ")
137+ .testTag(" SpendingAmountNumberField " )
138138 )
139139
140140 FillHeight ()
141141
142- // Actions
143142 Row (
144143 verticalAlignment = Alignment .Bottom ,
145144 horizontalArrangement = Arrangement .spacedBy(8 .dp),
146- modifier = Modifier .padding(vertical = 8 .dp)
145+ modifier = Modifier
146+ .padding(vertical = 8 .dp)
147+ .testTag(" SendAmountNumberPad" )
147148 ) {
148149 Column {
149150 Text13Up (
150151 text = stringResource(R .string.wallet__send_available),
151152 color = Colors .White64 ,
153+ modifier = Modifier .testTag(" SpendingAmountAvailable" )
152154 )
153155 Spacer (modifier = Modifier .height(8 .dp))
154- MoneySSB (sats = uiState.balanceAfterFee)
156+ MoneySSB (sats = uiState.balanceAfterFee, modifier = Modifier .testTag( " SpendingAmountUnit " ) )
155157 }
156158 FillWidth ()
157159 UnitButton (color = Colors .Purple )
You can’t perform that action at this time.
0 commit comments