Skip to content

Instantly share code, notes, and snippets.

@motorro
Created August 7, 2022 13:08
Show Gist options
  • Save motorro/99e2b8543e362ad62c61be3a57c0d248 to your computer and use it in GitHub Desktop.
Save motorro/99e2b8543e362ad62c61be3a57c0d248 to your computer and use it in GitHub Desktop.
Base state with context
abstract class LoginState(
context: LoginContext
): CoroutineState<LoginGesture, LoginUiState>(), LoginContext by context {
override fun doProcess(gesture: LoginGesture) {
Timber.w("Unsupported gesture: %s", gesture)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment