commonMain.com.huanshankeji.compose.ext.LoadingState.kt Maven / Gradle / Ivy
package com.huanshankeji.compose.ext
import androidx.compose.runtime.Immutable
@Immutable
sealed class LoadingState {
object Loading : LoadingState()
class Loaded(val value: T) : LoadingState()
class Error(val error: E) : LoadingState()
}
typealias ThrowableErrorLoadingState = LoadingState
typealias StringErrorLoadingState = LoadingState
© 2015 - 2025 Weber Informatics LLC | Privacy Policy