Convert ordinary flow into StateFlow 。 val flow = flow { for (i in 0..4) { emit(i) delay(100) } } coroutineScope { val stateFlow = ...
確定! 回上一頁