Fork me on GitHub
#cljsrn
<
2017-07-10
>
manu08:07:03

Do you recommend react-native-push-notification to handle notification? what are the differences with oneSignal?

mfikes14:07:44

They are getting crazy! First the ability to do phased deploys, and now this?

pesterhazy14:07:22

With recent changes, TestFlight deploys are moving from "abysmal" into "inconvenient" territory

pesterhazy14:07:22

to be fair most improvements are thanks to Felix Krause's fastlane suite of tools

yvon15:07:14

you also probably want to checkout the React Native channel

dzita15:07:07

hi every body !

dzita15:07:13

I am currently learning to create mobile apps using clojurescript, react-native and I would add a toobar in my app. help please

vikeri16:07:35

dzita: There is nothing particular about clojurescript and toolbars in RN, just google how to do it in vanilla RN and then you can just adapt the syntax to cljs. If you want a full navigation solution I can recommend react-navigation

dzita18:07:32

do you have some helpfull links about this ?

vikeri18:07:55

About what?

dzita18:07:11

Vanilla RN and toolbar

vikeri18:07:51

Not sure what you mean with toolbar, but check out: https://reactnavigation.org/docs/intro/

dzita19:07:01

another thing is how to use the side menu using drawer

gphilipp15:07:54

In the repo @U0AU4CPTN linked above there is an example for each : drawer, stack, toolbar

dzita15:07:40

I followed your advice and I created an application using cljs-react-navigation, but I still have misunderstandings about the concept of routes

dzita15:07:25

please can you based your explaination on this example :

(reg-event-db
  :reset-routing-state
  validate-spec
  (fn [db _]
    (assoc db :routing (clj->js {:index  1,
                                 :routes [{:routes    [{:index     0,
                                                        :routes    [{:routeName "Home", :key "HomeInit"}],
                                                        :key       "HomeTab",
                                                        :routeName "HomeTab"}
                                                       {:index     0,
                                                        :routes    [{:routeName "Search", :key "SearchInit"}],
                                                        :key       "SearchTabInit",
                                                        :routeName "SearchTab"}],
                                           :index     0,
                                           :key       "InitTabs",
                                           :routeName "Tabs"}
                                          {:index     0,
                                           :routes    [{:routeName "Login1", :key "Login1Init"}],
                                           :key       "LoginStackInit",
                                           :routeName "LoginStack"}]}))))

dzita15:07:45

thanks in advance

yvon15:07:16

I would like to create a registration form with

ClojureScript
using
React-Native
(and
Reagent
thereafter). And I would like to include the different components with MaterialDesign, and I do not know how to do it. Do you have any suggestions? I have already found on the Internet, but I did not have much. I just want to create a simple registration form, using ClojureScript MaterialDesign ReactNative. Thanks in advance for your feedback.

yvon15:07:19

Just a form like this : Name

Your Name
Email
Your Email
Password
Enter your password
Send Cancel

vikeri16:07:47

@yvon Do you have experience with React, RN or ClojureScript before?