Skip to content

Instantly share code, notes, and snippets.

@fvilarino
Created April 23, 2021 16:43
Show Gist options
  • Save fvilarino/9a800ec350c039e107173d6d5381ce53 to your computer and use it in GitHub Desktop.
Save fvilarino/9a800ec350c039e107173d6d5381ce53 to your computer and use it in GitHub Desktop.
App Theme Enum
enum class AppTheme {
MODE_DAY,
MODE_NIGHT,
MODE_AUTO;
companion object {
fun fromOrdinal(ordinal: Int) = values()[ordinal]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment