Updated on 2026-08-14

This commit is contained in:
Tangem 2024-08-22 16:01:36 +04:00
parent dbc5555503
commit 44f7f23a95
16 changed files with 719 additions and 551 deletions

View file

@ -0,0 +1,13 @@
package com.tangem.core.ui.decompose
import androidx.compose.runtime.Composable
import androidx.compose.runtime.Stable
@Stable
interface ComposableBottomSheetComponent {
fun dismiss()
@Composable
fun BottomSheet()
}