commonMain.com.vanniktech.ui.theming.night.HardcodedNightModeProvider.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ui-jvm Show documentation
Show all versions of ui-jvm Show documentation
Kotlin Multiplatform UI goodies
package com.vanniktech.ui.theming.night
class HardcodedNightModeProvider(
private var isNightMode: Boolean,
) : NightModeProvider {
override fun isNightMode() = isNightMode
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy