Updated on 2026-08-14

This commit is contained in:
Tangem 2025-06-03 18:18:14 +05:00
parent 4f8ee89101
commit 4e2bc84a7b
6 changed files with 22 additions and 5 deletions

View file

@ -78,7 +78,7 @@ private fun Placeholder(modifier: Modifier = Modifier) {
) {
Image(
modifier = Modifier.size(TangemTheme.dimens.size52),
painter = painterResource(R.drawable.ic_nft_placeholder_76),
painter = painterResource(R.drawable.ic_nft_placeholder_120),
contentDescription = null,
)
}

View file

@ -34,7 +34,7 @@ internal fun NFTCollectionsEmpty(state: NFTCollectionsUM.Empty, modifier: Modifi
horizontalAlignment = Alignment.CenterHorizontally,
) {
Image(
painter = painterResource(R.drawable.ic_nft_placeholder_76),
painter = painterResource(R.drawable.ic_nft_placeholder_add_76),
contentDescription = null,
)
Text(

View file

@ -39,7 +39,7 @@ internal fun NFTInfoBottomSheetContent(text: TextReference, modifier: Modifier =
) {
Text(
text = text.resolveReference(),
color = TangemTheme.colors.text.secondary,
color = TangemTheme.colors.text.primary1,
style = TangemTheme.typography.body2,
modifier = Modifier.padding(
start = TangemTheme.dimens.spacing16,
@ -52,7 +52,7 @@ internal fun NFTInfoBottomSheetContent(text: TextReference, modifier: Modifier =
@Composable
@Preview(showBackground = true)
@Preview(showBackground = true, uiMode = Configuration.UI_MODE_NIGHT_YES)
@Preview(showBackground = false, uiMode = Configuration.UI_MODE_NIGHT_YES)
private fun Preview_NFTInfoBottomSheetContent() {
TangemThemePreview {
NFTInfoBottomSheetContent(

View file

@ -65,7 +65,7 @@ private fun Placeholder(modifier: Modifier = Modifier) {
) {
Image(
modifier = Modifier.size(TangemTheme.dimens.size120),
painter = painterResource(R.drawable.ic_nft_placeholder_76),
painter = painterResource(R.drawable.ic_nft_placeholder_120),
contentDescription = null,
)
}