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

commonMain.com.softartdev.theme.pref.ThemeEnum.kt Maven / Gradle / Ivy

package com.softartdev.theme.pref

import androidx.compose.runtime.Composable
import dev.icerock.moko.resources.compose.stringResource

enum class ThemeEnum {
    Light,
    Dark,
    SystemDefault;

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy