1- // import {Trace} from '@nativescript/core';
2- // Trace.addCategories(Trace.categories.concat(Trace.categories.Layout));
3- // Trace.enable();
4-
5- import Vue from 'nativescript-vue' ;
1+ import Theme from '@nativescript-community/css-theme' ;
62import ActivityIndicatorPlugin from '@nativescript-community/ui-material-activityindicator/vue' ;
3+ import BottomNavigationPlugin from '@nativescript-community/ui-material-bottom-navigation/vue' ;
4+ import BottomNavigationBarPlugin from '@nativescript-community/ui-material-bottomnavigationbar/vue' ;
5+ import { install as installBottomSheet } from '@nativescript-community/ui-material-bottomsheet' ;
6+ import BottomSheetPlugin from '@nativescript-community/ui-material-bottomsheet/vue' ;
77import ButtonPlugin from '@nativescript-community/ui-material-button/vue' ;
88import CardViewPlugin from '@nativescript-community/ui-material-cardview/vue' ;
9+ import { installMixins , themer } from '@nativescript-community/ui-material-core' ;
910import FloatingActionButtonPlugin from '@nativescript-community/ui-material-floatingactionbutton/vue' ;
1011import ProgressPlugin from '@nativescript-community/ui-material-progress/vue' ;
1112import RipplePlugin from '@nativescript-community/ui-material-ripple/vue' ;
1213import SliderPlugin from '@nativescript-community/ui-material-slider/vue' ;
14+ import SpeedDialPlugin from '@nativescript-community/ui-material-speeddial/vue' ;
15+ import TabsPlugin from '@nativescript-community/ui-material-tabs/vue' ;
1316import TextFieldPlugin from '@nativescript-community/ui-material-textfield/vue' ;
1417import TextViewPlugin from '@nativescript-community/ui-material-textview/vue' ;
18+ import { Application , Trace } from '@nativescript/core' ;
1519import { isIOS } from '@nativescript/core/platform' ;
16- import { install as installBottomSheet } from '@nativescript-community/ui-material-bottomsheet' ;
17- import BottomSheetPlugin from '@nativescript-community/ui-material-bottomsheet/vue' ;
18- import BottomNavigationBarPlugin from '@nativescript-community/ui-material-bottomnavigationbar/vue' ;
19- import TabsPlugin from '@nativescript-community/ui-material-tabs/vue' ;
20- import BottomNavigationPlugin from '@nativescript-community/ui-material-bottom-navigation/vue' ;
21- import SpeedDialPlugin from '@nativescript-community/ui-material-speeddial/vue' ;
22- import Theme from '@nativescript-community/css-theme' ;
20+ import Vue from 'nativescript-vue' ;
21+ // import { getExamples } from './examples';
22+ import * as views from './views' ;
23+ Trace . addCategories ( Trace . categories . Transition ) ;
24+ Trace . addCategories ( Trace . categories . Navigation ) ;
25+ Trace . enable ( ) ;
2326
2427installBottomSheet ( ) ;
2528
@@ -42,7 +45,6 @@ Vue.use(SpeedDialPlugin);
4245Vue . registerElement ( 'PreviousNextView' , ( ) => require ( '@nativescript/iqkeyboardmanager' ) . PreviousNextView ) ;
4346Vue . registerElement ( 'TextViewWithHint' , ( ) => require ( '@nativescript/iqkeyboardmanager' ) . TextViewWithHint ) ;
4447
45- import { installMixins , themer } from '@nativescript-community/ui-material-core' ;
4648installMixins ( ) ;
4749if ( isIOS ) {
4850 themer . setPrimaryColor ( '#bff937' ) ;
@@ -65,10 +67,6 @@ if (global.isAndroid) {
6567 } ) ;
6668}
6769
68- // import { getExamples } from './examples';
69- import * as views from './views' ;
70- import { Application } from '@nativescript/core' ;
71-
7270// for (let item of getExamples()) {
7371// Vue.component(item.component.name, item.component);
7472// }
0 commit comments