Updated on 2026-08-14
This commit is contained in:
parent
cf6ee347b8
commit
658fdfdb15
22 changed files with 173 additions and 193 deletions
|
|
@ -10,6 +10,7 @@ android {
|
|||
|
||||
dependencies {
|
||||
|
||||
/** AndroidX */
|
||||
implementation(deps.androidx.fragment.ktx)
|
||||
/* Project - Core */
|
||||
implementation(projects.core.decompose)
|
||||
implementation(projects.core.ui)
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
package com.tangem.features.disclaimer.api
|
||||
|
||||
import androidx.fragment.app.Fragment
|
||||
|
||||
interface DisclaimerRouter {
|
||||
|
||||
fun entryFragment(): Fragment
|
||||
}
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
package com.tangem.features.disclaimer.api.components
|
||||
|
||||
import com.tangem.core.decompose.factory.ComponentFactory
|
||||
import com.tangem.core.ui.decompose.ComposableContentComponent
|
||||
|
||||
interface DisclaimerComponent : ComposableContentComponent {
|
||||
interface Factory : ComponentFactory<Params, DisclaimerComponent>
|
||||
|
||||
data class Params(
|
||||
val isTosAccepted: Boolean,
|
||||
)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue