I am creating an application in Jetpack Compose Desktop which will take user input and after user reopens the application that input value should be there. I me
In Jetpack Compose for android you can do this: val fontFamily = FontFamily( Font( resId = R.font.my_font_400_regular, weight = FontWeight.
How to load images from the hard disk when using Kotlin compose on the desktop?
I am trying to use a .svg (vector file) to show an image but I am stuck and not able to do it. Is there any way I can use it, I tried to use it like this Image(
With the following code the application window can be hidden using the button and restored using a global shortcut ALT+S. Now I would like to also use the short
Given some simple content: @Composable fun MyContent() { var showThing by remember { mutableStateOf(false) } if (showThing) { Box(Modifier.testT