Fork me on GitHub
#cljsrn
<
2018-05-04
>
clj3707:05:26

Hello. Does anybody have an example of using react-navigation with the DrawerNavigator ? I don't know how to access the props property inside my react component. https://reactnavigation.org/docs/drawer-based-navigation.html

carocad09:05:21

@clojurians558 you get the props as an argument to the function, like

(defn my-component [props] ;; do something)

manu15:05:09

Hi! I'm using react-navigation but if the user press quickly the buttons the app navigate multiple times on the same screen! how do you prevent this? thx