This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2015-11-15
Channels
- # admin-announcements (1)
- # alda (12)
- # announcements (1)
- # beginners (5)
- # boot (241)
- # clara (2)
- # cljs-dev (7)
- # cljsrn (9)
- # clojure (54)
- # clojure-conj (7)
- # clojure-russia (12)
- # clojurescript (118)
- # cursive (11)
- # editors (3)
- # hoplon (58)
- # immutant (17)
- # off-topic (58)
- # om (1)
- # onyx (12)
- # re-frame (10)
- # reagent (8)
- # spacemacs (6)
What's the equivalent of this JSX using our programmatic/direct invocation style of createElement
?
<View style={[styles.base, this.state.active && styles.active]} />
I have a textinput that i'd like to have a different borderColor
when its text contents are existent
what’s the ideal way to get props automatically passed in from react native? using om.next
@johanatan: an example would be navigatorios. when navigatorios renders a component it gives it a navigator object. From the react native page ”A navigator is an object of navigation functions that a view can call. It is passed as a prop to any component rendered by NavigatorIOS.” when i log out this I see https://gist.github.com/iamjarvo/c4b05917c3ac8689180e the navigator object is in there. I am assuming i need to write a query to get to it but I have not had success. my solution was basically to pass around the navigator to get access to it