As a general question, is there a standard pattern...
# compose-desktop
s
As a general question, is there a standard pattern of handling platform specific usecases that aren't supported by Compose yet?
o
Compose per se is an UI framework, so guess your question is now to add platform-specific code to JVM apps. Answer is to use JNI to invoke native code for platform APIs or search for existing library already providing such functionality.
u
Or find a platform specific java library that does that for you ;-)