Updated on 2026-08-14

This commit is contained in:
Tangem 2025-02-26 22:07:46 +03:00
parent 2fb5b86505
commit 01cd52cabd
87 changed files with 540 additions and 564 deletions

View file

@ -11,4 +11,8 @@ android {
dependencies {
/** AndroidX */
implementation(deps.androidx.fragment.ktx)
/** Core */
implementation(projects.core.ui)
implementation(projects.core.decompose)
}

View file

@ -0,0 +1,9 @@
package com.tangem.features.wallet
import com.tangem.core.decompose.factory.ComponentFactory
import com.tangem.core.ui.decompose.ComposableContentComponent
interface WalletEntryComponent : ComposableContentComponent {
interface Factory : ComponentFactory<Unit, WalletEntryComponent>
}

View file

@ -1,14 +0,0 @@
package com.tangem.features.wallet.navigation
import androidx.fragment.app.Fragment
/**
* Wallet feature router
*
[REDACTED_AUTHOR]
*/
interface WalletRouter {
/** Get feature entry point [Fragment] */
fun getEntryFragment(): Fragment
}