interface View : FlowView<OneStepLoginContract.Presenter>
open fun showError(errorField: ErrorField, errorMes: Int): Unit
Shows a contextual error related to the user's actions |
open fun hideError(errorField: ErrorField): Unit
Hides a previously shown error |
|
abstract fun hideProgress(): Unit
allow the user to click on the .primaryActionView |
|
open fun showError(errorField: ErrorField): Unit
Shows a contextual error related to the user's actions |
|
abstract fun showProgress(): Unit
prevent the user to click on the .primaryActionView |
class OneStepLoginFragment : FlowFragment<OneStepLoginContract.Presenter>, OneStepLoginContract.View
a Fragment displaying the one step login screen |