hey guys, for now from non composable code we obta...
# multiplatform
h
hey guys, for now from non composable code we obtain strings like this
Copy code
suspend fun getString(resource: StringResource): String

suspend fun getString(resource: StringResource, vararg formatArgs: Any): String

suspend fun getStringArray(resource: StringResource): List<String>
is there any way to get them as non suspending, or is there any plan in the future to obtain it without this function being
suspend
c
It includes File access, so a synchronized call will be blocking. If you are okay with that, just wrap it on a
runBlocking
call.
thank you color 1