Created
April 23, 2021 16:43
-
-
Save fvilarino/9a800ec350c039e107173d6d5381ce53 to your computer and use it in GitHub Desktop.
App Theme Enum
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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