commonMain.com.mmk.kmpauth.uihelper.google.GoogleButtonMode.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kmpauth-uihelper-jvm Show documentation
Show all versions of kmpauth-uihelper-jvm Show documentation
Kotlin Multiplatform Authentication Library targeting ios and android
package com.mmk.kmpauth.uihelper.google
/**
* Google Sign-In Button mode
*/
public sealed interface GoogleButtonMode {
/**
* Light mode
*/
public data object Light : GoogleButtonMode
/**
* Dark mode
*/
public data object Dark : GoogleButtonMode
/**
* Neutral mode
*/
public data object Neutral : GoogleButtonMode
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy