Updated on 2026-08-14
This commit is contained in:
parent
2fb5b86505
commit
01cd52cabd
87 changed files with 540 additions and 564 deletions
|
|
@ -11,4 +11,8 @@ android {
|
|||
dependencies {
|
||||
/** AndroidX */
|
||||
implementation(deps.androidx.fragment.ktx)
|
||||
|
||||
/** Core */
|
||||
implementation(projects.core.ui)
|
||||
implementation(projects.core.decompose)
|
||||
}
|
||||
|
|
@ -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>
|
||||
}
|
||||
|
|
@ -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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue