Questions tagged [kotlin-desktop]

3 questions
0
votes
0 answers

Can I prevent the user of a restricted system from minimizing my application?

I have a Kotlin + Jetbrains Compose desktop application. This application will be used in a specific computer, that is only supposed to run this application and the software that the application runs through subprocesses. Needless to say, this…
Pstr
  • 777
  • 1
  • 8
  • 17
0
votes
1 answer

How to add my Compose Multiplatform application to SendTo menu in Windows?

I have a cross-platform application created using Compose Multiplatform. I need to add it to SendTo menu (this menu is available in Windows Explorer when user right-clicked a file). I've tried to find any options to implement it using Gradle. But…
0
votes
0 answers

How to load ViewModels in Kotlin Desktop?

I have an multiplatform application based on JetBrains Compose for Android and Desktop. In common module I have screens (as a Composable functions) with ViewModels inherited from dev.icerock.moko.mvvm.viewmodel.ViewModel: import…