Fork me on GitHub
#fulcro
<
2019-12-03
>
Robin Jakobsson10:12:46

have anyone done low level component TDD with Fulcro & workspaces? Like for specing & testing the behavior of your React components?

jmayaalv15:12:33

how good is the story of fulcro with react-native ? i have seen https://github.com/fulcrologic/fulcro-native has anybody tried it?

henrik15:12:23

There’s a fairly recent video about it: https://www.youtube.com/watch?v=03I9uRxVQsc

👍 4
currentoor18:12:14

@U0CKQ19AQ and I are using react native very heavily in our product

currentoor18:12:36

so we’ve tried and we like it 😉

currentoor18:12:09

as a UI kit we’re using react native base, here’s our API around it

currentoor18:12:17

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)

currentoor18:12:44

we should probably move that ns to it’s own library but time constraints

currentoor18:12:19

should be an easy task if anyone is interested in contributing to the react native front

currentoor18:12:48

but yeah other than that, all the fulcro other stuff works pretty great with RN, form state, UISM, fulcro-inspect-electron, etc

🎉 8
jmayaalv15:12:23

has anybody sample projects to share?

jmayaalv15:12:22

🙂 thanks a lot