Updated on 2026-08-14

This commit is contained in:
Tangem 2025-01-09 13:46:37 +05:00
commit 873feabdf8
8 changed files with 368 additions and 1 deletions

View file

@ -57,6 +57,7 @@ internal fun StoriesScreen(
}
}
// todo refactor [REDACTED_TASK_KEY]
StoriesScreenContent(
modifier = Modifier
.fillMaxSize()
@ -75,6 +76,7 @@ internal fun StoriesScreen(
)
}
@Deprecated("Use StoriesContainer from core/ui")
@Suppress("LongMethod")
@Composable
private fun StoriesScreenContent(config: StoriesScreenContentConfig, modifier: Modifier = Modifier) {

View file

@ -4,6 +4,7 @@ import kotlinx.collections.immutable.ImmutableList
import kotlinx.collections.immutable.toImmutableList
import org.rekotlin.StateType
// todo refactor [REDACTED_TASK_KEY]
data class HomeState(
val scanInProgress: Boolean = false,
val stories: ImmutableList<Stories> = Stories.entries.toImmutableList(),