Can somebody point me to documentation or an artic...
# compose-ios
t
Can somebody point me to documentation or an article that describes how to interact with the main thread from shared iosMain code? I need to work interact with UIApplication and typically you would move that logic to the main thread, but in this case the code is running in a coroutine.
l
I typically launch a new task using Dispatchers.Main, but you can also inject a dispatcher using DI.
1