Questions tagged [jetbrains-compose]

Jetbrains Compose (https://www.jetbrains.com/lp/compose/) is a ui toolkit targeting jvm on desktop platforms. It is a port of Android Jetpack Compose (https://developer.android.com/jetpack/compose) which is developed by google

52 questions
0
votes
0 answers

Compose desktop "ClassNotFoundException" when using "verticalScroll" modifier

I am getting ClassNotFoundException error when using verticalScroll modifier, I am getting the same error when using LazyColumn too. Caused by: java.lang.ClassNotFoundException: androidx.compose.ui.input.mouse.MouseScrollFilter_skikoKt I am using…
Porush Manjhi
  • 135
  • 12
0
votes
0 answers

Kotlin skiko throws ClassNotFoundException when starting the application

I have created a new kotlin/JVM project with IntelliJ IDEA with the build.gradle.kts: import org.jetbrains.kotlin.gradle.tasks.KotlinCompile plugins { kotlin("jvm") version "1.6.0" } group = "me.ivanefan" version = "1.0.0" repositories { …
IvanEFan
  • 117
  • 2
  • 10
0
votes
0 answers

Kotlin Internal Error java.lang.IllegalStateException with Jetbrains Compose

Hi I'm new to kotlin and trying to get a Jetpack compose desktop calculator application up and running. I wrote some JUnit tests and attempted to run them, but I am met with an internal error instead. This is the IntelliJ output: Kotlin: [Internal…
0
votes
1 answer

White border on webpage

My website is displaying an undesired white border for all my components, even when using default configs: Main.kt fun main() { renderComposable("root") { Div({ style { height(300.px); backgroundColor(blue) } }) { } …
LeoColman
  • 6,950
  • 7
  • 34
  • 63
0
votes
2 answers

How do I use fonts in Jetpack Compose for Desktop?

I'm trying to use some font ttf files placed in src/main/resources/fonts/ in JetBrains Compose for Desktop. How do I use the font files in the function androidx.compose.ui.text.font.Font()? I tried using the R.fonts.font_file mentioned in many…
0
votes
1 answer

Network calls not working in EXE distribution build of Compose for Desktop Application

I have used Ktor JVM Client for doing network calls in Compose for Desktop Application. Network calls are working fine in Debug build means when I am just running the application it's working fine. But when I create the EXE distribution file, by…
Avijit Karmakar
  • 8,890
  • 6
  • 44
  • 59
0
votes
1 answer

Gradle error: Execution failed for task ':app:compileKotlin'. > java.io.IOException

The error: Execution failed for task ':app:compileKotlin'. > java.io.IOException: System can not find the path(系统找不到指定的路径) This is happened in a jetbrain compose project in kotlin, source code is in github And more log detail in…
Eritque arcus
  • 164
  • 1
  • 11
1 2 3
4