What are the recommended libraries to build quick-and-dirty GUIs in Haskell nowadays? The suggestions on the Haskell wiki look outdated. Don’t really care about the look-and-feel as long as it gives me some basic controls like buttons, textboxes and a grid.
I have used wxHaskell in the past and am looking for something like it. I did not manage to get wxHaskell working with current GHC yet. Did anyone have success with it or any other library recently?
My requirements:
- Should work on Windows. In worst-case I could run it under WSL2, but prefer something native.
- Medium-level library like wxHaskell. I’d prefer it not be just a bunch of low-level bindings to Win32/GTK/Qt/WPF/… or something opinionated like FRP. If that is my only option, though, I’ll probably take it.
- Native desktop programming model. If it has to run in the browser than it should give me a programming model similar to wxHaskell.