This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-10-05
Channels
- # aleph (190)
- # bangalore-clj (4)
- # beginners (31)
- # boot (127)
- # braid-chat (2)
- # cider (2)
- # cljs-dev (79)
- # cljsrn (7)
- # clojure (81)
- # clojure-dev (1)
- # clojure-greece (40)
- # clojure-italy (3)
- # clojure-korea (8)
- # clojure-new-zealand (5)
- # clojure-russia (5)
- # clojure-spec (87)
- # clojure-uk (13)
- # clojurescript (50)
- # cloverage (10)
- # component (4)
- # core-async (37)
- # cursive (26)
- # datascript (20)
- # datomic (29)
- # editors (2)
- # emacs (12)
- # hoplon (63)
- # jobs (2)
- # lein-figwheel (1)
- # leiningen (17)
- # liberator (2)
- # off-topic (19)
- # om (31)
- # onyx (9)
- # pedestal (4)
- # proton (1)
- # re-frame (22)
- # reagent (13)
- # ring (1)
- # ring-swagger (9)
- # spacemacs (5)
- # specter (4)
- # untangled (24)
- # vim (29)
@seantempesta If I remember correctly you were doing something with firebase? I tried to get it working but without luck. It actually even fails when I just send a GET request through the Rest API (I have disabled auth temporarily).
@vikeri: Hmm. I’m not doing anything special. I’m just requiring firebase and using it like normal.
@seantempesta: Ok, never got it working in iOS. Resorted to classic rest in android...
Hey - noob to cljs/rn here, coming from a web background. Trying to create a button component from TouchableHighlight and Text components.
(defn btn [props]
[touchable-highlight {:style (:button s/components)
:underlayColor "#E67E22"
:on-press #()}
[text {:style (:button-text s/components)} (:label props)]])
Is there a nice way to change the color of the text when the button is pressed?