Archie
07/29/2020, 1:36 PMAppState
? Examples I've seen so far only show a small application where the AppState
is very simple. But how do you model an AppState
in a Large Application with multiple screens? Do I make smaller "`AppState`" inside the "root" AppState
like:
data class AppState(
val loginAppState: LoginAppState,
val signUpAppState: SignUpAppState
val someOtherScreenAppState: OtherScreenAppState
....
)
data class LoginAppState(
val usernamer: String,
val password: String
....
)
I'd really appreciate any help. Thank you very much in advancevitus
08/11/2020, 5:30 PMwillyrs
08/19/2020, 6:07 AMwillyrs
08/19/2020, 6:07 AM