Updated on 2026-08-14
This commit is contained in:
parent
4d0cb6a243
commit
2653d35a8b
5 changed files with 190 additions and 2 deletions
|
|
@ -43,7 +43,8 @@ internal fun DestinationBlock(
|
|||
.clip(TangemTheme.shapes.roundedCornersXMedium)
|
||||
.background(TangemTheme.colors.background.action)
|
||||
.clickable(enabled = !isClickDisabled && !isEditingDisabled, onClick = onClick)
|
||||
.padding(TangemTheme.dimens.spacing12),
|
||||
.padding(TangemTheme.dimens.spacing12)
|
||||
.testTag(SendConfirmScreenTestTags.RECIPIENT_BLOCK),
|
||||
) {
|
||||
AddressWithMemoBlock(
|
||||
address = destinationUM.addressTextField,
|
||||
|
|
@ -99,7 +100,9 @@ private fun AddressWithMemoBlock(
|
|||
text = stringResourceSafe(R.string.send_memo, memo.value),
|
||||
style = TangemTheme.typography.caption2,
|
||||
color = TangemTheme.colors.text.tertiary,
|
||||
modifier = Modifier.padding(top = TangemTheme.dimens.spacing8),
|
||||
modifier = Modifier
|
||||
.padding(top = TangemTheme.dimens.spacing8)
|
||||
.testTag(SendConfirmScreenTestTags.RECIPIENT_MEMO),
|
||||
)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue