Updated on 2026-08-14

This commit is contained in:
Tangem 2023-04-10 11:33:11 +03:00
parent e78f9b8018
commit 331a15b433
8 changed files with 2 additions and 18 deletions

View file

@ -148,7 +148,6 @@ class TangemColors internal constructor(
plain: Color,
action: Color,
fade: Color,
warning: Color = TangemColorPalette.Flamingo,
) {
var primary by mutableStateOf(primary)
private set
@ -160,8 +159,6 @@ class TangemColors internal constructor(
private set
var fade by mutableStateOf(fade)
private set
var warning by mutableStateOf(warning)
private set
fun update(other: Background) {
primary = other.primary
@ -169,7 +166,6 @@ class TangemColors internal constructor(
plain = other.plain
action = other.action
fade = other.fade
warning = other.warning
}
}

View file

@ -1,9 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="21dp"
android:height="20dp"
android:viewportWidth="21"
android:viewportHeight="20">
<path
android:pathData="M4.667,14.658L13.492,5.833H8V4.167H16.333V12.5H14.667V7.008L5.842,15.833L4.667,14.658Z"
android:fillColor="#000000"/>
</vector>

View file

@ -36,9 +36,6 @@ dependencies {
implementation(deps.compose.shimmer)
implementation(deps.tangem.card.core)
// implementation(deps.tangem.card.android) {
// exclude(module = "joda-time")
// }
/** Other libraries */
implementation(deps.compose.shimmer)

View file

@ -21,7 +21,7 @@ class DummyWordlist(
private var _wordlist: List<String> = listOf()
override val wordlist: List<String>
override val words: List<String>
get() = _wordlist
init {

View file

@ -16,6 +16,6 @@ class DummySeedPhraseInteractor(
) : SeedPhraseInteractor, SeedPhraseChecker by seedPhraseChecker {
override suspend fun generateSeedPhrase(): List<String> {
return sdkSeedPhraseRepository.getWordList().wordlist
return sdkSeedPhraseRepository.getWordList().words
}
}