Dovydas
01/18/2025, 11:30 AMyschimke
01/18/2025, 2:53 PMyschimke
01/18/2025, 2:53 PMDovydas
01/18/2025, 4:26 PMDovydas
01/18/2025, 4:26 PMCanvas(modifier = Modifier.fillMaxHeight()) {
drawIntoCanvas {
it.nativeCanvas.drawTextOnPath(
)
}
}
I get: Unresolved reference: drawTextOnPath
russhwolf
01/18/2025, 4:33 PMnativeCanvas
is a platform-specific type so you'll only be able to access that function on Android. For other platforms, it's doable but much more involved. See https://www.pushing-pixels.org/2022/02/10/drawing-text-on-a-path-in-compose-desktop-with-skia.htmlDovydas
01/18/2025, 4:44 PMDovydas
01/18/2025, 6:23 PMrusshwolf
01/18/2025, 6:28 PMskikoMain
source set. That's common to non-Android platforms.russhwolf
01/18/2025, 6:28 PMDovydas
01/18/2025, 6:59 PM