Updated on 2026-08-14

This commit is contained in:
Tangem 2025-07-16 11:46:30 +03:00
parent d616571df4
commit d2ca91a522
2 changed files with 10 additions and 8 deletions

View file

@ -65,12 +65,14 @@ private fun LazyListScope.contentItems(
TokenListItem(
state = item,
isBalanceHidden = isBalanceHidden,
modifier = modifier.roundedShapeItemDecoration(
currentIndex = index,
lastIndex = items.lastIndex,
backgroundColor = TangemTheme.colors.background.primary,
).testTag(MainScreenTestTags.TOKEN_LIST_ITEM)
.semantics { lazyListItemPosition = index },
modifier = modifier
.roundedShapeItemDecoration(
currentIndex = index,
lastIndex = items.lastIndex,
backgroundColor = TangemTheme.colors.background.primary,
)
.testTag(MainScreenTestTags.TOKEN_LIST_ITEM)
.semantics { lazyListItemPosition = index },
)
},
)