Updated on 2026-08-14
This commit is contained in:
parent
1ffa785bc0
commit
e910d4cb3e
11 changed files with 56 additions and 6 deletions
|
|
@ -0,0 +1,6 @@
|
|||
package com.tangem.features.managetokens.navigation
|
||||
|
||||
enum class ExpandableState {
|
||||
EXPANDED,
|
||||
COLLAPSED,
|
||||
}
|
||||
|
|
@ -1,10 +1,12 @@
|
|||
package com.tangem.features.managetokens.navigation
|
||||
|
||||
import androidx.compose.runtime.Composable
|
||||
import androidx.compose.runtime.State
|
||||
import androidx.compose.ui.unit.Dp
|
||||
|
||||
interface ManageTokensUi {
|
||||
|
||||
@Suppress("TopLevelComposableFunctions")
|
||||
@Composable
|
||||
fun Content(onHeaderSizeChange: (Dp) -> Unit)
|
||||
fun Content(onHeaderSizeChange: (Dp) -> Unit, state: State<ExpandableState>)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue