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
in MainStackRouter.js file
MainStackRouter.js
export default (StackNav = StackNavigator({ Login: { screen: Login }, Home: { screen: Home }, BlankPage: { screen: BlankPage } }));
the variable StackNav is not declared before,so it will be promoted to global object.
StackNav
global
if I add 'use strict' in this file, compile will go wrong!
'use strict'
ExceptionsManager.js:63 StackNav is not defined
I proposal that it can be:
let StackNav = StackNavigator({ Login: { screen: Login }, Home: { screen: Home }, BlankPage: { screen: BlankPage } }) export default StackNav;
thx!!
The text was updated successfully, but these errors were encountered:
@wikieswan Very soon we will upgrade Native Starter Kit to the latest of React, React NativeandNativeBase` With refactored code
React
and
Sorry, something went wrong.
No branches or pull requests
in
MainStackRouter.js
filethe variable
StackNav
is not declared before,so it will be promoted toglobal
object.if I add
'use strict'
in this file, compile will go wrong!I proposal that it can be:
thx!!
The text was updated successfully, but these errors were encountered: