We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 165aaec commit 89dd3e7Copy full SHA for 89dd3e7
App/Sagas/StartupSaga.js
@@ -9,8 +9,10 @@ export function* startup() {
9
// Dispatch a redux action using `put()`
10
// @see https://redux-saga.js.org/docs/basics/DispatchingActions.html
11
yield put(ExampleActions.fetchTemperature())
12
- // Do operation here :
+
13
+ // Add more operations you need to do at startup here
14
// ...
- // When operations are finished redirect to InitialPage
15
16
+ // When those operations are finished we redirect to the main screen
17
NavigationService.navigateAndReset('InitialPage')
18
}
0 commit comments