clojurefx/README.md

22 lines
634 B
Markdown
Raw Normal View History

# ClojureFX
2013-08-28 15:55:09 +00:00
A Clojure wrapper to make working with [JavaFX](http://download.java.net/jdk8/jfxdocs/index.html) simpler and more idiomatic.
## Features
2015-01-16 21:30:10 +00:00
This is in a very early state, so there isn't much yet. Take a look at the [ClojureFX wiki](https://bitbucket.org/zilti/clojurefx/wiki/Home).
### Declarative UI programming
```clojure
(compile [VBox {:id "TopLevelVBox"
:children [Label {:text "Hi!"}
Label {:text "I'm ClojureFX!"}
HBox {:id "HorizontalBox"
:children [Button {:text "Alright."}]}]}])
```
## TODO
Everything.