|
|
|
|
|
by capableweb
2274 days ago
|
|
Love the example with the spacer, guess we're back to building UIs with tables soon as well! (defn counter [num]
(horizontal-layout
(on :mouse-down (fn [[mouse-x mouse-y]]
(swap! counter-state inc)
nil)
(button "more!"))
(spacer 5 0)
(label num (ui/font nil 19))))
Otherwise, haven't heard about Skia before, so thanks for sharing that, looks really nifty. |
|
Skia has worked well so far. Since it's used by Chrome, Android, and Firefox under the hood, it means that I can reach a lot of platforms "for free".