Native GUI toolkit

Is any reasonable GUI toolkit for native GO?

I’m using gogland (ie, JetBrains IDEA for Go)

1 Like

Not really. Are some tries but nothing really serious. Also look over this project.

For now i use this trick for writing go apps with graphic interface ;).

He’s referring to a library for creating GUI apps not an IDE.

There are several different attemps to create a GUI for an Go based app.

Here is an pretty complete list with some options:
https://github.com/avelino/awesome-go#gui

For a portable app I would prefer OpenGL take a look at:

https://kylewbanks.com/blog/tutorial-opengl-with-golang-part-1-hello-opengl

For a game app you can use SDL bindings https://github.com/veandco/go-sdl2

Here is an awesome video-series howto create a game in Go:
https://github.com/campoy/flappy-gopher

I hope this helps

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.