Clojure Desktop UI Framework
github.com
Clojure Desktop UI Framework
1–10 of 139 posts
Re: Clojure Desktop UI Framework
#2I will say I've found Clojure to be a success story for doing GUI work. Projects like Dave Ray's seesaw (https://github.com/clj-commons/seesaw) are an amazing demo of how one man can rearchitect an API like Swing into something that is deceptively fun to use. High hopes that this project goes somewhere that is similarly enjoyable.
Re: Clojure Desktop UI Framework
#3Re: Clojure Desktop UI Framework
#4Re: Clojure Desktop UI Framework
#5Per the other comment, might do less dunking
Re: Clojure Desktop UI Framework
#6Lol, checking out the readme. Dunking on stuff isn't what makes you an opinionated framework.
Like, honest question, I do agree with most of their points and don’t think they’re presenting them in a too harsh way
Re: Clojure Desktop UI Framework
#7Really could use a link to the API docs in the README.md, it is a bit hard to judge when the "documentation" such as they have so far is sparse. But it is nice to see a newish UI project. I will say I've found Clojure to be a success story for doing GUI work. Projects like Dave Ray's seesaw ( https://github.com/clj-commons/seesaw ) are an amazing demo of how one man can rearchitect an API like Swing into something th…
http://groovy-lang.org/dsls.html#swingbuilder https://github.com/scala/scala-swing
Re: Clojure Desktop UI Framework
#8Re: Clojure Desktop UI Framework
#9Really could use a link to the API docs in the README.md, it is a bit hard to judge when the "documentation" such as they have so far is sparse. But it is nice to see a newish UI project. I will say I've found Clojure to be a success story for doing GUI work. Projects like Dave Ray's seesaw ( https://github.com/clj-commons/seesaw ) are an amazing demo of how one man can rearchitect an API like Swing into something th…
Work in progress. No docs, and everything changes every day.Re: Clojure Desktop UI Framework
#10But, looking at the examples (picked the Wordle one since I know that game): https://github.com/HumbleUI/HumbleUI/blob/main/dev/examples/...
I find it extremely hard to read. Even small snippets, say line 56 to 74 which define this "color", "merge-colors" and "colors"... then the "field" one lines 76 to 117 is even harder.
is it more natural read for people familiar with writing functional programs? (am I permanently "broken" due to my familiarity with imperative programing?)
I wonder what the same Wordle example would look like in, say pure Flutter.
Also wonder how would that code look with external dependencies (say hitting a server to get the word of the day), and navigation (with maintaining state in between those pages)