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

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

Go to download

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

The newest version!
package com.softartdev.theme.pref

import androidx.compose.runtime.*

val LocalThemePrefs = staticCompositionLocalOf {
    error("CompositionLocal LocalThemePrefs not present")
}

abstract class ThemePrefs(
    val preferenceHelper: PreferenceHelper,
) {
    val darkThemeState: MutableState = mutableStateOf(preferenceHelper.themeEnum)
}

object PreferableMaterialTheme {

    val themePrefs: ThemePrefs
        @Composable
        @ReadOnlyComposable
        get() = LocalThemePrefs.current
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy