@@ -20,8 +20,8 @@ import { EventData, View, Color } from '@nativescript/core';
2020import { StackLayout } from ' @nativescript/core' ;
2121import { ActivityIndicator } from ' @nativescript/core' ;
2222import { Label } from ' @nativescript/core' ;
23- import BottomSheetInner from ' ./BottomSheetInner.vue' ;
24- import BottomSheetInnerKeyboard from ' ./BottomSheetInnerKeyboard.vue' ;
23+ import BottomSheetInner from ' ./BottomSheetInner.vue' ;
24+ import BottomSheetInnerKeyboard from ' ./BottomSheetInnerKeyboard.vue' ;
2525import { NativeScriptVue } from ' nativescript-vue' ;
2626
2727export const title = ' BottomSheet sample' ;
@@ -44,7 +44,7 @@ export default Vue.extend({
4444 switch (objId ) {
4545 case ' bottomsheet' : {
4646 (this as NativeScriptVue ).$showBottomSheet (BottomSheetInner , {
47- transparent:true ,
47+ // transparent: true,
4848 closeCallback : (... args ) => {
4949 console .log (' bottom sheet closed' , args );
5050 }
@@ -53,7 +53,7 @@ export default Vue.extend({
5353 }
5454 case ' dont_ignore_top_safe_area' : {
5555 (this as NativeScriptVue ).$showBottomSheet (BottomSheetInner , {
56- ignoreTopSafeArea:false ,
56+ ignoreTopSafeArea: false ,
5757 // transparent:true,
5858 closeCallback : (... args ) => {
5959 console .log (' bottom sheet closed' , args );
@@ -64,7 +64,7 @@ export default Vue.extend({
6464 case ' ignore_bottom_safe_area' : {
6565 (this as NativeScriptVue ).$showBottomSheet (BottomSheetInner , {
6666 // transparent:true,
67- ignoreBottomSafeArea:true ,
67+ ignoreBottomSafeArea: true ,
6868 closeCallback : (... args ) => {
6969 console .log (' bottom sheet closed' , args );
7070 }
@@ -74,8 +74,8 @@ export default Vue.extend({
7474 case ' dont_ignore_top_ignore_bottom_safe_area' : {
7575 (this as NativeScriptVue ).$showBottomSheet (BottomSheetInner , {
7676 // transparent:true,
77- ignoreTopSafeArea:false ,
78- ignoreBottomSafeArea:true ,
77+ ignoreTopSafeArea: false ,
78+ ignoreBottomSafeArea: true ,
7979 closeCallback : (... args ) => {
8080 console .log (' bottom sheet closed' , args );
8181 }
@@ -94,4 +94,4 @@ export default Vue.extend({
9494 }
9595 }
9696});
97- </script >
97+ </script >
0 commit comments