Updated on 2026-08-14
This commit is contained in:
parent
8c93a8b820
commit
e2247020e4
9 changed files with 71 additions and 36 deletions
|
|
@ -0,0 +1,18 @@
|
|||
package com.tangem.features.send.v2.api.entry
|
||||
|
||||
import com.tangem.core.decompose.navigation.Route
|
||||
|
||||
/**
|
||||
* Route for switching send and send via swap flows.
|
||||
*/
|
||||
sealed class SendEntryRoute : Route {
|
||||
|
||||
/** Route to send screen */
|
||||
data object Send : SendEntryRoute()
|
||||
/** Route to send via swap screen */
|
||||
data object SendWithSwap : SendEntryRoute()
|
||||
/** Route to choose token screen for send via swap */
|
||||
data class ChooseToken(
|
||||
val showSendViaSwapNotification: Boolean,
|
||||
) : SendEntryRoute()
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue