Skip to content

Instantly share code, notes, and snippets.

@0xZhangKe
Created December 3, 2023 02:46
Show Gist options
  • Save 0xZhangKe/7d4c071ba7b7aa4be82b161410b395db to your computer and use it in GitHub Desktop.
Save 0xZhangKe/7d4c071ba7b7aa4be82b161410b395db to your computer and use it in GitHub Desktop.
usecase usage for viewmodel
class LoginViewModel @Inject constructor(
private val doSomething: DoSomethingUseCase,
): ViewModel(){
fun onLoginClick(){
doSomething()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment