Matthew David
07/11/2025, 8:34 PMYassine Abou
07/11/2025, 10:03 PMMatthew David
07/11/2025, 10:25 PMChrimaeon
07/12/2025, 10:23 AMChrimaeon
07/12/2025, 10:24 AM@Composable
direclty in Android without the need of a webview.Bogdan Vladoiu Lbs
07/13/2025, 10:20 PM<!DOCTYPE html>
<html lang="en">
<head>
<script type="application/javascript" src="skiko.js"></script>
<script type="application/javascript" src="composeApp.js"></script>
</head>
<body>
//existing content
<canvas id="ComposeTarget"></canvas>
//existing content
</body>
</html>
........
@OptIn(ExperimentalComposeUiApi::class)
fun main() {
onWasmReady {
CanvasBasedWindow(canvasElementId = "ComposeTarget") {
App()
}
}
}
Bogdan Vladoiu Lbs
07/13/2025, 11:38 PM