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

commonMain.ink.ui.structures.elements.WeatherElement.kt Maven / Gradle / Ivy

package ink.ui.structures.elements

import ink.ui.structures.Sentiment

data class WeatherElement(
    val temperature: String,
    val condition: Condition,
    val secondaryText: String? = null,
    val title: String? = null,
    val daytime: Boolean = true,
    val sentiment: Sentiment = Sentiment.Nominal,
): UiElement.Static {

    enum class Condition {
        Clear,
        Cloudy,
        Rainy,
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy