commonMain.com.mmk.kmpauth.google.GoogleAuthUiProvider.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kmpauth-google Show documentation
Show all versions of kmpauth-google Show documentation
Kotlin Multiplatform Authentication Library targeting ios and android
package com.mmk.kmpauth.google
/**
* Provider class for Google Authentication UI part. a.k.a [signIn]
*/
public interface GoogleAuthUiProvider {
/**
* Opens Sign In with Google UI, and returns [GoogleUser]
* if sign-in was successful, otherwise, null
* @return returns GoogleUser or null(if sign-in was not successful)
*/
public suspend fun signIn(): GoogleUser?
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy