LoginViewDelegate

protocol LoginViewDelegate

LoginView protocol to handle actions

  • Event listener for sign in button

    Declaration

    Swift

    func signInBtn(email: String?, password: String?)

    Parameters

    email

    the entered email

    password

    the entered password

    Return Value

    Void

  • Event listener for sign up button

    Declaration

    Swift

    func registerBtn(name: String?, email: String?, password: String?)

    Parameters

    name

    the user name

    email

    the entered email

    password

    the entered password

    Return Value

    Void

  • Listener for fogot button

    Declaration

    Swift

    func forgotPasswordBtn()
  • Listener for Skip button

    Declaration

    Swift

    func skipBtn()