Tgo1014
11/24/2021, 4:03 PMContentLoadinProgressBar
in compose?Dmitrii Smirnov
11/24/2021, 4:14 PMif(!showProgress){content()}else{Progress()}
Tgo1014
11/24/2021, 4:16 PMproduceState
not sure if this can workval _isLoading by produceState(false, isLoading) {
delay(Duration.milliseconds(500))
value = if (isLoading != value) {
isLoading
} else {
value
}
}