We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running the project, it directly loads the Example screen.
Thanks
The text was updated successfully, but these errors were encountered:
Hi @rodwin ,
This is a normal behavior since there is nothing to load (in startupSaga). There is an automatic redirection at the end of the startupSaga
startupSaga
... export function* startup() { ... NavigationService.navigateAndReset('MainScreen') // <--- this line here }
Fetching the temperature data is too fast to let you see the splash screen. Try to add a setTimeout in order to simulate a long fetching.
setTimeout
in /App/Sagas/StartupSaga.js
/App/Sagas/StartupSaga.js
... export function* startup() { ... setTimeout(() => {NavigationService.navigateAndReset('MainScreen')}, 3000) }
I expect this to work and let you see the splash screen for 3 seconds.
Sorry, something went wrong.
Awesome. Thanks for the explanation.
No branches or pull requests
Running the project, it directly loads the Example screen.
Thanks
The text was updated successfully, but these errors were encountered: