File tree Expand file tree Collapse file tree 4 files changed +11
-11
lines changed Expand file tree Collapse file tree 4 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 21
21
<MDTextField class =" session-details-input" :hint =" 'description'" />
22
22
</StackLayout >
23
23
<MDFloatingActionButton src =" res://ic_action_add" @tap =" onTap" horizontalAlignment =" center" />
24
+ <MDButton fontSize =" 26" text =" mdi-plus" class =" mdi" @tap =" onTap" horizontalAlignment =" center" />
24
25
<MDFloatingActionButton fontSize =" 26" text =" mdi-plus" class =" mdi" @tap =" onTap" horizontalAlignment =" center" />
25
26
<MDFloatingActionButton src =" res://ic_action_add" color =" white" backgroundColor =" blue" size =" mini" @tap =" onTap" horizontalAlignment =" center" />
26
27
<MDFloatingActionButton src =" res://ic_action_add" text =" test expanded" @tap =" onTap" horizontalAlignment =" center" />
Original file line number Diff line number Diff line change @@ -24,17 +24,17 @@ export default {
24
24
} ;
25
25
} ,
26
26
methods : {
27
- goToExample ( item ) {
28
- console . log ( 'goToExample' ) ;
27
+ async goToExample ( item ) {
28
+ console . log ( 'goToExample' , item . title ) ;
29
29
try {
30
- this . $navigateTo ( item . component ) ;
31
- } catch ( err ) {
30
+ await this . $navigateTo ( item . component ) ;
31
+ } catch ( err ) {
32
32
console . error ( err ) ;
33
33
}
34
34
} ,
35
35
goToModalExample ( item ) {
36
36
console . log ( 'goToModalExample' ) ;
37
- this . $showModal ( item . component , { } ) ;
37
+ this . $showModal ( item . component , { } ) ;
38
38
}
39
39
}
40
40
} ;
Original file line number Diff line number Diff line change 5
5
"main" : " app/main" ,
6
6
"dependencies" : {
7
7
"@mdi/font" : " 4.9.95" ,
8
- "@nativescript/core" : " 8.0.0 " ,
8
+ "@nativescript/core" : " 8.0.5 " ,
9
9
"@nativescript-community/text" : " 1.4.11" ,
10
10
"@nativescript-community/ui-material-activityindicator" : " file:../packages/activityindicator" ,
11
11
"@nativescript-community/ui-material-bottom-navigation" : " file:../packages/bottom-navigation" ,
Original file line number Diff line number Diff line change 1
- const webpack = require ( " @nativescript/webpack" ) ;
1
+ const webpack = require ( ' @nativescript/webpack' ) ;
2
2
3
3
module . exports = ( env ) => {
4
- webpack . init ( env ) ;
5
-
6
- return webpack . resolveConfig ( ) ;
7
- } ;
4
+ webpack . init ( env ) ;
5
+ return webpack . resolveConfig ( ) ;
6
+ } ;
You can’t perform that action at this time.
0 commit comments