Skip to content
Advertisement

Tag: kotlin-coroutines

Using coroutines in a right way

I am implementing the coroutine for first time. I am following MVP pattern for a simple login app. Here is my code flow – The login button clicked will follow this direction – LoginFragment -> LoginPresenter -> Repository -> APIRepository -> RetrofitInterface The login response will follow this direction – RetrofitInterface -> APIRepository -> Repository -> LoginPresenter -> LoginFragment Here

Advertisement