Updated on 2026-08-14

This commit is contained in:
Tangem 2025-10-29 15:59:29 +04:00
parent 4215c91a37
commit df186a5f5d
9 changed files with 74 additions and 9 deletions

View file

@ -1,5 +1,6 @@
package com.tangem.common.ui.account
import androidx.annotation.StringRes
import androidx.compose.runtime.Immutable
import arrow.core.Either
import arrow.core.raise.either
@ -25,7 +26,10 @@ sealed interface AccountNameUM {
*/
data object DefaultMain : AccountNameUM {
override val value: TextReference = resourceReference(R.string.account_main_account_title)
@get:StringRes
val stringResId: Int = R.string.account_main_account_title
override val value: TextReference = resourceReference(stringResId)
}
/**