You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+20-7Lines changed: 20 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -2,11 +2,11 @@
2
2
3
3
# Cljfx dev tools
4
4
5
-
Cljfx is a declarative, functional and extensible wrapper of JavaFX inspired by better parts of react and re-frame. Cljfx dev tools are a set of tools that can help with developing cljfx applications that should not be included into production distribution of the cljfx app.
5
+
Cljfx is a declarative, functional and extensible wrapper of JavaFX inspired by better parts of react and re-frame. Cljfx dev tools are a set of tools that help with developing cljfx applications but should not be included into the production distribution of the cljfx app.
6
6
7
7
## Installation
8
8
9
-
See latest version in Clojars
9
+
See latest version on Clojars
10
10
11
11
## Requirements
12
12
@@ -16,10 +16,21 @@ Cljfx dev tools require Java 11 or later.
16
16
17
17
### Props and types reference
18
18
19
-
If you don't remember the props required by some cljfx type, or if you don't know what even are the available types, you can use `cljfx.dev/help` to look up this information:
19
+
If you don't remember the props required by some cljfx type, or if you don't know what are the available types, you can use `cljfx.dev/help` to look up this information:
20
20
21
21
```clojure
22
22
(require 'cljfx.dev)
23
+
24
+
;; look up available types:
25
+
(cljfx.dev/help)
26
+
;; Available cljfx types:
27
+
;; Cljfx type Instance class
28
+
;; :accordion javafx.scene.control.Accordion
29
+
;; :affine javafx.scene.transform.Affine
30
+
;; ...etc
31
+
32
+
33
+
23
34
;; look up information about fx type:
24
35
(cljfx.dev/help:label)
25
36
;; Cljfx type:
@@ -32,7 +43,9 @@ If you don't remember the props required by some cljfx type, or if you don't kno
0 commit comments