Created
July 6, 2022 20:01
-
-
Save VitalyPeryatin/eeeefd479c1b71427f878509b9436cbc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class AppViewModel( | |
... | |
): BaseViewModel() { | |
private val _pendingNavigationRoutes = Channel<List<String>>( | |
capacity = 1, | |
onBufferOverflow = BufferOverflow.DROP_LATEST | |
) | |
fun tryOpenScreenChain(routes: List<String>) { | |
if (routes.isNotEmpty()) { | |
viewModelScope.launch { | |
_pendingNavigationRoutes.send(routes) | |
} | |
} | |
} | |
fun getNavigationPendingRoutes(): Flow<List<String>> { | |
return _pendingNavigationRoutes.receiveAsFlow() | |
} | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment