This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-11-10
Channels
- # aws (45)
- # bangalore-clj (16)
- # beginners (109)
- # boot (137)
- # cider (7)
- # cljs-dev (54)
- # cljsrn (22)
- # clojure (77)
- # clojure-conj (1)
- # clojure-greece (2)
- # clojure-nl (5)
- # clojure-russia (36)
- # clojure-spec (15)
- # clojure-uk (54)
- # clojurescript (118)
- # cursive (7)
- # datomic (25)
- # emacs (33)
- # hoplon (276)
- # klipse (38)
- # lein-figwheel (1)
- # leiningen (9)
- # melbourne (1)
- # off-topic (18)
- # om (98)
- # onyx (6)
- # pedestal (1)
- # perun (24)
- # re-frame (46)
- # reagent (6)
- # ring-swagger (3)
- # spacemacs (67)
- # specter (15)
- # untangled (33)
- # vim (6)
@pvinis right) you don't need objc-c-js step) the only think I would like to warn it is about bridge, if you want maximum performance then you need to use Animated API, because they bind directly to view properties
another warn is file and properties names, don't use names that start with RTC, use another namespace, don't use properties like margin, font-size and so one, this is cause conflicts and RN overwrite it. Also remember that if you write your file with Manager
at the end, then in your code you don't need to write it, i.e file name - MyViewManager
in cljs (require-native-component "MyView")
nice. thanks for the tips. I will try again by first making a library and see how that will work
@pvinis I think that hardest is create first native module/native view (yes, this is different things) then it will be much easier š
looks like exponentJSās main pitch is āhide react nativeā, and re-natal is definitely not about hiding react-native š
lvh with re-natal you are in control (that has pros and cons). If you need custom react native modules (ie bluetooth low level stuff java threads in your app) then re-natal is only solution atm I believe...
I believe having a solution for native modules integration is their (exponentjs) priority atm
Hi guys - trying to get a navigator working. Starting with the example app that comes with boot-react-native.
[navigator {:render-scene (fn [ ] [text "Hi"])}]
I figure thatās the simplest possible navigator š
However, this leads to a redbox with āObjects are not valid as a react child"
Any ideas?