Kirill Grouchnikov
05/08/2022, 4:01 AMKeith Karanu
05/08/2022, 6:27 AMMichael Paus
05/08/2022, 10:11 AMXad Kile
05/09/2022, 4:27 PMspierce7
05/09/2022, 9:02 PMcolorString.removePrefix("#").toInt(16)
miguelsesma
05/10/2022, 1:14 PMubuntu@primary:~/Home/IdeaProjects/untitled$ uname -a
Linux primary 5.4.0-109-generic #123-Ubuntu SMP Fri Apr 8 09:12:14 UTC 2022 aarch64 aarch64 aarch64 GNU/Linux
ubuntu@primary:~/Home/IdeaProjects/untitled$ gradle -version
------------------------------------------------------------
Gradle 7.4.2
------------------------------------------------------------
Build time: 2022-03-31 15:25:29 UTC
Revision: 540473b8118064efcc264694cbcaa4b677f61041
Kotlin: 1.5.31
Groovy: 3.0.9
Ant: Apache Ant(TM) version 1.10.11 compiled on July 10 2021
JVM: 16.0.1 (Private Build 16.0.1+9-Ubuntu-120.04)
OS: Linux 5.4.0-109-generic aarch64
Now I try to create the package but gradle complains about not having `skiko`:
ubuntu@primary:~/Home/IdeaProjects/untitled$ gradle createDistributable
> Task :run FAILED
Exception in thread "main" java.lang.UnsatisfiedLinkError: /home/ubuntu/.skiko/301a4ed732d2008e05d036470d72b8c7a7df9df1b3cc0d356615c8129124eae2/libskiko-linux-arm64.so: libGL.so.1: cannot open shared object file: No such file or directory
at java.base/jdk.internal.loader.NativeLibraries.load(Native Method)
I cannot install intellij idea
ubuntu@primary:~/Home/IdeaProjects/untitled$ sudo snap install intellij-idea-community --classic
error: snap "intellij-idea-community" is not available on stable for this architecture (arm64) but
exists on other architectures (amd64).
So I need to somewhat configure skiko, skia or whatever is need, but I'm lost. After reading everythinh in this channel related to raspberry pi, I'm even more confused.
Perhaps trying to install intellij as explained here https://youtrack.jetbrains.com/articles/IDEA-A-48/JetBrains-IDEs-on-AArch64 will provide me the skia / skiko needed dependencies?
Any help is welcomed.Abdelilah El Aissaoui
05/10/2022, 5:25 PMKirill Grouchnikov
05/11/2022, 6:30 PMsamuel
05/11/2022, 10:02 PMsmit01
05/12/2022, 4:35 PMBrian Guertin
05/12/2022, 7:15 PM> Task :jgosdk:compileKotlinIosArm64
e: Compilation failed: Cannot find the Composer class in the classpath
saket
05/13/2022, 5:06 AMAlexander Maryanovsky
05/13/2022, 6:05 AMLandry Norris
05/13/2022, 6:11 PMAlexander Suraphel
05/14/2022, 12:16 PMandroidx.compose.material.Button
to build a compose desktop app? I want to reuse the layout I have for tablets…Alexander Suraphel
05/15/2022, 12:29 PMPHondogo
05/16/2022, 10:50 AMException "java.lang.ClassNotFoundException: com/intellij/codeInsight/editorActions/FoldingData"while constructing DataFlavor for: application/x-java-jvm-local-objectref; class=com.intellij.codeInsight.editorActions.FoldingData
what does it means?Yan Pujante
05/16/2022, 5:41 PM@Composable
fun Panel(image: ImageBitmap) {
Canvas(modifier = Modifier
.size(image.width.dp, image.height.dp) // doesn't work (mismatch size)
.border(1.dp, Color.Red)) {
drawIntoCanvas { canvas ->
canvas.withSave {
canvas.drawImage(image, Offset(0f, 0f), Paint())
}
}
}
}
Lawrence
05/16/2022, 8:25 PMSebastian Kürten
05/16/2022, 8:41 PMJose Luis Torres Aguilar
05/17/2022, 4:20 PMJakob K
05/17/2022, 6:30 PMNavigationRailItem
inside a NavigationRail
(both from material3
and not m2).Lawrence
05/17/2022, 7:10 PMModifier.fillMaxWidth(0.75f)
to allow it to grow to occupy 75% of max width but also limiting the max width to 500.dp
?Jakob K
05/18/2022, 9:14 PMproduceState
it throws another exception at a higher level and crashes the application (I posted that exception inside the thread). Am I doing something wrong here?smallshen
05/19/2022, 12:14 AMNorbi
05/19/2022, 8:06 AMCaused by: org.gradle.internal.resolve.ModuleVersionNotFoundException: Could not find org.jetbrains.compose.compiler:compiler:1.2.0-alpha01-dev686.
or some other error 😞
My goal is to use Kotlin 1.6.21...
Thanks.spierce7
05/19/2022, 7:34 PMPainter
into a skia Image
2. Turn an SVG into a skia Image
instead of a Painter
David W
05/20/2022, 1:35 AMxxfast
05/20/2022, 7:08 AMynsok
05/20/2022, 7:18 AMynsok
05/20/2022, 7:18 AMPHondogo
05/20/2022, 10:29 AMynsok
05/20/2022, 11:26 AMDragos Rachieru
05/23/2022, 1:29 PM}
in the last screenshotjvmMain {
works, I only use
val jvmMain by getting {
dependencies {
implementation(compose.desktop.currentOs)
}
}