This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-07-11
Channels
- # aws (15)
- # beginners (55)
- # boot (116)
- # bristol-clojurians (2)
- # cider (4)
- # cljs-dev (439)
- # cljsrn (14)
- # clojure (135)
- # clojure-argentina (3)
- # clojure-czech (4)
- # clojure-italy (60)
- # clojure-russia (1)
- # clojure-spec (48)
- # clojure-uk (42)
- # clojurescript (170)
- # cloverage (11)
- # core-async (19)
- # cursive (13)
- # datomic (48)
- # emacs (2)
- # graphql (3)
- # hoplon (8)
- # jobs (1)
- # jobs-discuss (5)
- # klipse (11)
- # luminus (5)
- # lumo (5)
- # mount (48)
- # off-topic (96)
- # om (17)
- # onyx (14)
- # parinfer (30)
- # protorepl (1)
- # re-frame (90)
- # reagent (2)
- # remote-jobs (1)
- # spacemacs (12)
- # specter (20)
- # uncomplicate (1)
- # untangled (65)
- # vim (2)
- # yada (8)
Is it possible to integrate react native into an existing android app using clojurescript?
yes it is
if it's possible with React Native, it's possible in cljsrn
It is possible with React Native. Ergo, it's possible in cljsrn. </modus-ponens>
Hello @vikeri. I can not say that I have experience as such. I try to take existing projects and understand them and modify them as I see fit.
@yvon, Ok! It could possibly be easier to learn javascript React Native first then. It’s a lot to learn React, React Native and Clojure at the same time.
@yvon i second vikeri’s suggestion to learn javascript react-native. coping with error messages when you’re not sure if the cause is cljs, rn, etc is tough. as for suggestions, i enjoyed https://kylewbanks.com/blog/react-native-tutorial-part-1-hello-react , where the author makes a little calculator. the exercises at the end are fun!
trying to bump re-natal to RN 0.46.1 and reagent 0.7.0, RN works, but after upgraded to 0.7.0 I get red screen “React not defined”. Anyone had success with reagent 0.7.0?
Did you add create-react-class as well?
Anything else in react-native log-ios?
noob question. i’m doing
(map rect-maker (take 10 do-stuff))
and i get a list of
([#object[reagent.impl.template.NativeWrapper]
{:fill "black", :x 1, :y 100, :height 100, :width 100}]
[#object[reagent.impl.template.NativeWrapper]
{:fill "black", :x 26, :y 200, :height 100, :width 100}]
[#object[reagent.impl.template.NativeWrapper]
...)
but that list of react-native components is not valid hiccup. how do i get just:
[object
[object
[object