Hi, I just made a hello world with kmp and it is w...
# kotlin-native
a
Hi, I just made a hello world with kmp and it is working on android and ios. Now i'm trying to port the same code to linux, but I'm not finding much material about, anyone knows an open source project using kmp on linux apps?
d
What in particular do you want to build? GUI app?
n
If it is a GUI app then using GTK ( https://www.gtk.org/ ) is the way to go. All of the top 3 desktop Linux distributions (Ubuntu, Linux Mint, and Fedora) use GTK as the standard GUI toolkit, which makes GTK native to these distributions. With Linux GTK is the defacto GUI toolkit.
There is a official GTK sample ( https://github.com/JetBrains/kotlin-native/tree/master/samples/gtk ) in the Kotlin Native repository.
a
Exactly, a GUI app, if not possible a command line is enough to start, thank you for the links I'll start with it
a