jvmMain.io.nacular.doodle.user.impl.UserPreferencesImpl.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of desktop-jvm Show documentation
Show all versions of desktop-jvm Show documentation
A pure Kotlin, UI framework for the Web
package io.nacular.doodle.user.impl
import io.nacular.doodle.user.UserPreferences
import io.nacular.doodle.user.UserPreferences.ColorScheme
import io.nacular.doodle.user.UserPreferences.ColorScheme.Light
import io.nacular.doodle.utils.PropertyObservers
import io.nacular.doodle.utils.PropertyObserversImpl
// FIXME: Implement properly
public class UserPreferencesImpl: UserPreferences {
override val colorScheme: ColorScheme = Light
override val colorSchemeChanged: PropertyObservers by lazy { PropertyObserversImpl(this) }
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy