All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.softartdev.themepref.ThemeEnum.kt Maven / Gradle / Ivy

Go to download

Kotlin Multiplatform library for easy switching Dark/Light Material themes on Compose.

There is a newer version: 0.5.5
Show newest version
package com.softartdev.themepref

import androidx.compose.runtime.Composable

enum class ThemeEnum {
    Light,
    Dark,
    SystemDefault;

    @Composable
    fun toLocalizedString(): String = when (this) {
        Light -> MR.strings.light
        Dark -> MR.strings.dark
        SystemDefault -> MR.strings.system_default
    }.composeLocalized()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy