This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-12-03
Channels
- # adventofcode (91)
- # announcements (7)
- # aws (3)
- # babashka (69)
- # beginners (46)
- # calva (30)
- # cider (12)
- # clj-kondo (88)
- # cljs-dev (11)
- # cljsrn (1)
- # clojure (195)
- # clojure-dev (21)
- # clojure-europe (2)
- # clojure-italy (13)
- # clojure-nl (56)
- # clojure-spec (4)
- # clojure-sweden (6)
- # clojure-uk (27)
- # clojurescript (179)
- # core-async (2)
- # cryogen (1)
- # cursive (2)
- # data-science (1)
- # datomic (57)
- # fulcro (15)
- # graalvm (9)
- # instaparse (6)
- # joker (18)
- # juxt (9)
- # leiningen (6)
- # off-topic (20)
- # other-languages (10)
- # pathom (5)
- # re-frame (20)
- # reitit (2)
- # rewrite-clj (5)
- # shadow-cljs (78)
- # sql (34)
- # tools-deps (128)
- # uncomplicate (16)
- # vim (6)
have anyone done low level component TDD with Fulcro & workspaces? Like for specing & testing the behavior of your React components?
how good is the story of fulcro with react-native ? i have seen https://github.com/fulcrologic/fulcro-native has anybody tried it?
There’s a fairly recent video about it: https://www.youtube.com/watch?v=03I9uRxVQsc
@U0CKQ19AQ and I are using react native very heavily in our product
so we’ve tried and we like it 😉
as a UI kit we’re using react native base, here’s our API around it
usage looks like this
(base/button :.transparent.full
{:style {:marginTop (if label 0 10)
:marginLeft 5
:flex 1
:marginRight 20}
:bordered true
:info true
:onPress #(comp/set-state! this {:time-picker-visible? true})}
time-string)
we should probably move that ns to it’s own library but time constraints
should be an easy task if anyone is interested in contributing to the react native front
but yeah other than that, all the fulcro other stuff works pretty great with RN, form state, UISM, fulcro-inspect-electron, etc