Yasser AKBBACH
10/28/2023, 7:55 PMnavigation
considered as a state
?
in case that wasn't clear, there is an example:
let's say we have a state
:
data class LoginState(
val username: String,
val password: String,
) {
// We need nav controller to do the navigation
fun navigateToDashboard()
}
would we consider navigateToDashboard
as a state?Zach Klippenstein (he/him) [MOD]
10/29/2023, 5:13 PMYasser AKBBACH
10/29/2023, 6:19 PMnav controller
to state
and handle the event there?