Updated on 2026-08-14

This commit is contained in:
Tangem 2023-04-16 11:41:02 +03:00
parent e7557659d3
commit de222c7cb7
4 changed files with 4 additions and 0 deletions

View file

@ -22,4 +22,5 @@ class TestingCoroutineDispatcherProvider(
override val main: CoroutineDispatcher = Dispatchers.Unconfined,
override val io: CoroutineDispatcher = Dispatchers.Unconfined,
override val single: CoroutineDispatcher = Executors.newFixedThreadPool(1).asCoroutineDispatcher(),
) : CoroutineDispatcherProvider

View file

@ -45,6 +45,7 @@ data class ImportSeedPhraseUiAction(
data class TextFieldUiAction(
val onTextFieldChanged: (TextFieldValue) -> Unit,
val onFocusChanged: (Boolean) -> Unit = {},
)
enum class SeedPhraseField {

View file

@ -36,6 +36,7 @@ fun CheckSeedPhraseScreen(
.weight(1f)
.fillMaxWidth(),
) {
item {
OnboardingDescriptionBlock(
modifier = Modifier

View file

@ -95,6 +95,7 @@ private fun PhraseBlock(
textStyle = TangemTheme.typography.body1,
singleLine = false,
colors = TangemTextFieldsDefault.defaultTextFieldColors,
)
Box(
modifier = Modifier