Is there any UI for iOS that can be used?
# coroutines
m
Is there any UI for iOS that can be used?
v
Only what Apple provides
m
Copy code
class UI: KTKotlinx_coroutines_core_nativeCoroutineDispatcher {
        override func dispatch(context: KTStdlibCoroutineContext, block: KTKotlinx_coroutines_core_nativeRunnable) {
            DispatchQueue.main.async {
                block.run()
            }
        }
    }