Guilherme Akio Sakae
Guilherme Akio Sakae
@rauschma the links needs to be updated: **quickstart** to https://reasonml.github.io/docs/en/quickstart-javascript.html and **cli (editor tools)** to https://reasonml.github.io/docs/en/global-installation.html right now it gives a redirect Actually all the links sorry
You can use the getting started example ``` import ReactSignupLoginComponent from 'react-signup-login-component'; const LoginPage = (props) => { const signupWasClickedCallback = (data) => { console.log(data); alert('Call the backend to create...
Then you can use a library to "talk" to your data, something like this: ``` import ReactSignupLoginComponent from 'react-signup-login-component'; import axios from 'axios'; const LoginPage = (props) => { const...
Just did it here too, work fine. Win10 + Ubuntu sub distro
Hi @honkskillet, It sounds like a valid idea. In the meantime, you can have this behavior if you use the `handleSignup` callback then, on the callback you can hide the...
+1 I'm guessing here but maybe because of this line? let window = UIApplication.sharedApplication().windows.first as! UIWindow maybe in the viewDidLoad method the window is nil?