Updated on 2026-08-14

This commit is contained in:
Tangem 2025-01-09 11:45:37 +03:00
parent 477a3c11dd
commit 88a80a7d3a
49 changed files with 68 additions and 70 deletions

View file

@ -180,7 +180,7 @@ internal object WalletPreviewData {
val bottomSheet by lazy {
TangemBottomSheetConfig(
isShow = false,
isShown = false,
onDismissRequest = {},
content = WalletBottomSheetConfig.UnlockWallets(
onUnlockClick = {},

View file

@ -29,6 +29,6 @@ internal class CloseBottomSheetTransformer(userWalletId: UserWalletId) : WalletS
}
private fun updateConfig(prevState: WalletState) = prevState.bottomSheetConfig?.copy(
isShow = false,
isShown = false,
)
}

View file

@ -35,7 +35,7 @@ internal class OpenBottomSheetTransformer(
}
private fun updateConfig() = TangemBottomSheetConfig(
isShow = true,
isShown = true,
onDismissRequest = onDismissBottomSheet,
content = content,
)