This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-03-17
Channels
- # bangalore-clj (1)
- # beginners (23)
- # boot (141)
- # cider (68)
- # cljs-dev (29)
- # cljsjs (1)
- # cljsrn (11)
- # clojure (150)
- # clojure-austin (3)
- # clojure-berlin (1)
- # clojure-france (2)
- # clojure-greece (13)
- # clojure-italy (5)
- # clojure-russia (49)
- # clojure-spec (15)
- # clojure-uk (45)
- # clojurescript (152)
- # code-art (1)
- # core-async (75)
- # cursive (12)
- # datascript (2)
- # datomic (90)
- # dirac (5)
- # emacs (10)
- # garden (1)
- # hoplon (52)
- # instaparse (4)
- # juxt (2)
- # lein-figwheel (2)
- # lumo (47)
- # mount (94)
- # off-topic (20)
- # om (21)
- # onyx (14)
- # parinfer (19)
- # pedestal (3)
- # protorepl (13)
- # re-frame (5)
- # reagent (20)
- # slack-help (10)
- # spacemacs (8)
- # specter (57)
- # unrepl (11)
- # untangled (3)
- # vim (1)
- # yada (1)
@savelichalex @anmonteiro
I can confirm exp detach
just works for me, very exciting!
I'm using https://github.com/tiensonqin/exponent-cljs-template,
the difference between the template from CRNA is it generates an Expo (Exponent renamed to Expo recently)
app, use its integrated services (push notifications, etc).
Hi, I would appreciate a little hand here. I just started developing using re-natal, and I am kind of stuck on how to use react methods.
For example I built a TextInput but it seems none of onChange or onChangeText is working.
(def input-box (r/adapt-react-class(.-TextInput ReactNative)))
usage as [input-box {:style {:font-size 14 :font-weight "normal" :width 220 :on-change #(alert (.-target.value %))}}]
I am currently working on a couple of projects with reagent, re-natal, re-frame and I am ending up with duplicate wrapper code for react-native libraries. So I was thinking of making these wrappers into open source libraries and put them on github and clojars. Are there currently similar initiatives ? So that it would make more sense for me to join efforts.
wrappers / libraries that I am about to publish can be found here: https://github.com/re-native
Hi guys,
Things are going extremely slow, anyway i was thinking if there is a good guide to start with re-natal I am managing things here and there.
I am stuck again at getting the target value, using a TextInput :
(def input-box (r/adapt-react-class(.-TextInput ReactNative)))
when i evaluate while typing :
[input-box {:style {:font-size 14 :font-weight "normal" :width 220}
:on-change #(alert (.-target.value %))
:value (:current-message @app-state)}]
I get nil but i was expecting to see the typed character