I’m trying to make a GUI with julia so I tried using Glade since that was the builder recommended by Julia docs in this link. I tried using the code posted to connect the widgets to my code in Juno but keep getting a “glade is undefined” error. So I tried saving the glade into the same file as the code and tried putting it in my Desktop but that doesn’t work either.
If you have a file called myapp.glade then you’ll need to call @GtkBuilder(filename="myapp.glade"); the missing quotes seem to be an error in the docs.
This is in no way Juno specific, btw.