Just to clarify, Jetpack Compose on Android doesn't interact with Skia directly, but rather employs the View Canvas - an abstraction above the native Android rendering system. This system, while ultimately utilizing Skia, does so at a deeper level, indirectly facilitating Compose's use of Skia. This also contributes to the seamless integration of Jetpack Compose with Android View, ensuring compatibility with the pre-existing UI framework. On the other hand, Compose for iOS bears a resemblance to Flutter in its approach, bundling its own Skia renderer to draw its UI elements.