This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import androidx.compose.runtime.* | |
import kotlinx.coroutines.* | |
private class ContentLoadingIndicatorState( | |
private val showDelay: Long, | |
private val minShowTime: Long | |
) { | |
private val _isVisible: MutableState<Boolean> = mutableStateOf(false) | |
val isVisible: Boolean by _isVisible |