Skip to content

Commit 0213766

Browse files
Exports fixed
1 parent d722595 commit 0213766

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

demo/app/main-page.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Page xmlns="http://schemas.nativescript.org/tns.xsd" loaded="pageLoaded" class="page" xmlns:AR="nativescript-ar">
22
<GridLayout rows="auto, *" columns="*">
3-
<Label text="{{ message }}" class="t-20 text-center c-black" textWrap="true"/>
3+
<Label text="{{ message }}" class="t-20 p-10 text-center c-black" textWrap="true"/>
44
<AR:AR
55
row="1"
66
debugLevel="FEATURE_POINTS"

demo/app/main-view-model.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export class HelloWorldModel extends Observable {
88
super();
99

1010
const supported = AR.isSupported();
11-
this.message = `Supported? ${supported}`;
11+
this.message = `AR supported? ${supported}`;
1212

1313
if (!supported) {
1414
return;

src/.npmignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
*.ts
2+
*.map
23
!ar.android.d.ts
34
!ar.ios.d.ts
45
!ar-common.d.ts

0 commit comments

Comments
 (0)