Fork me on GitHub
#cljsrn
<
2016-06-24
>
alwx11:06:33

Hello everyone. I've just wrote an article with some thoughts and conclusions about React Native, ClojureScript, reagent and re-natal. Based on 6 months experience and my previous Android development experience. Hope you will find it useful. https://medium.com/@alwxdev/react-native-summing-up-86838441d289

jimmy12:06:19

@alwx: nice sum up 🙂

savelichalex13:06:19

hey guys, how I can catch keyboard open event?

misha20:06:22

(def Keyboard (js/require "Keyboard"))
(def subscription (.addListener Keyboard "keyboardWillShow" callback))
(.remove subscription)

danielbraun21:06:29

I asked this quest in the figwheel chan - why is the root component remounted every time when figwheel reloads?

danielbraun21:06:52

it refreshes all my webviews

misha21:06:09

you might need to add figwheel-no-reload to ns, which mounts root component

misha21:06:38

or you might need to save/restore navigator's views stack on ns reload

misha21:06:08

* in addition to defonce atoms you have holding your app's state

danielbraun21:06:45

I don't think it's that

danielbraun21:06:02

I tested it on a new re-natal template and it still happens