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 89a106c commit b706d01Copy full SHA for b706d01
demo-react/src/app.ts
@@ -1,7 +1,7 @@
1
import * as React from 'react';
2
3
/* Controls react-nativescript log verbosity. true: all logs; false: only error logs. */
4
-Object.defineProperty(global, '__DEV__', { value: false });
+Object.defineProperty(global, '__DEV__', { value: true });
5
6
/*
7
In NativeScript, the app.ts file is the entry point to your application.
@@ -13,7 +13,7 @@ import * as ReactNativeScript from 'react-nativescript';
13
import { ExampleTabs as AppContainer } from './components/HomeScreen';
14
import { registerTabs } from '@nativescript-community/ui-material-tabs/react';
15
16
-registerTabs();
+registerTabs({ enableDebugLogging: true });
17
ReactNativeScript.start(React.createElement(AppContainer, {}, null));
18
19
0 commit comments