Is it possible to use independent libraries for io...
# multiplatform
c
Is it possible to use independent libraries for ios and android and have them share common UI using composable? I.e. ARKit and SceneView Android
l
In Compose Multiplatform, yes, with
AndroidView
and
UIKitView
. expect/actual work with Composable functions too.
👍 1