Skip to content

Instantly share code, notes, and snippets.

View yannickpulver's full-sized avatar

Yannick Pulver yannickpulver

View GitHub Profile
@BindingAdapter("uiState")
fun setUiStateForLoading(progressView: ProgressBar, uiState: UIState) {
progressView.visibility = when (uiState) {
Loading -> View.VISIBLE
else -> View.GONE
}
}
@BindingAdapter("uiState")
fun setUiStateForLoadedContent(view: View, uiState: UIState) {