Skip to content

Commit d84b97b

Browse files
committed
chore: demo fix
1 parent ffaff43 commit d84b97b

File tree

3 files changed

+82
-341
lines changed

3 files changed

+82
-341
lines changed

demo-snippets/package.json

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -20,24 +20,24 @@
2020
},
2121
"dependencies": {
2222
"@mdi/font": "6.5.95",
23-
"@nativescript-community/ui-material-activityindicator": "7.0.33",
24-
"@nativescript-community/ui-material-bottom-navigation": "7.0.33",
25-
"@nativescript-community/ui-material-bottomnavigationbar": "7.0.33",
26-
"@nativescript-community/ui-material-bottomsheet": "7.0.33",
27-
"@nativescript-community/ui-material-button": "7.0.33",
28-
"@nativescript-community/ui-material-cardview": "7.0.33",
29-
"@nativescript-community/ui-material-core": "7.0.33",
30-
"@nativescript-community/ui-material-core-tabs": "7.0.33",
31-
"@nativescript-community/ui-material-dialogs": "7.0.33",
32-
"@nativescript-community/ui-material-floatingactionbutton": "7.0.33",
33-
"@nativescript-community/ui-material-progress": "7.0.33",
34-
"@nativescript-community/ui-material-ripple": "7.0.33",
35-
"@nativescript-community/ui-material-slider": "7.0.33",
36-
"@nativescript-community/ui-material-snackbar": "7.0.33",
37-
"@nativescript-community/ui-material-speeddial": "7.0.33",
38-
"@nativescript-community/ui-material-tabs": "7.0.33",
39-
"@nativescript-community/ui-material-textfield": "7.0.33",
40-
"@nativescript-community/ui-material-textview": "7.0.33",
23+
"@nativescript-community/ui-material-activityindicator": "*",
24+
"@nativescript-community/ui-material-bottom-navigation": "*",
25+
"@nativescript-community/ui-material-bottomnavigationbar": "*",
26+
"@nativescript-community/ui-material-bottomsheet": "*",
27+
"@nativescript-community/ui-material-button": "*",
28+
"@nativescript-community/ui-material-cardview": "*",
29+
"@nativescript-community/ui-material-core": "*",
30+
"@nativescript-community/ui-material-core-tabs": "*",
31+
"@nativescript-community/ui-material-dialogs": "*",
32+
"@nativescript-community/ui-material-floatingactionbutton": "*",
33+
"@nativescript-community/ui-material-progress": "*",
34+
"@nativescript-community/ui-material-ripple": "*",
35+
"@nativescript-community/ui-material-slider": "*",
36+
"@nativescript-community/ui-material-snackbar": "*",
37+
"@nativescript-community/ui-material-speeddial": "*",
38+
"@nativescript-community/ui-material-tabs": "*",
39+
"@nativescript-community/ui-material-textfield": "*",
40+
"@nativescript-community/ui-material-textview": "*",
4141
"@nativescript/hook": "~2.0.0",
4242
"copy-webpack-plugin": "^11.0.0",
4343
"nativescript-vue-template-compiler": "~2.9.3",

demo-snippets/vue/TextView.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<NavigationButton text="Back" android.systemIcon="ic_menu_back" @tap="onNavigationButtonTap"></NavigationButton>
55
</ActionBar>
66
<ScrollView>
7-
<StackLayout>
7+
<StackLayout padding="10">
88
<MDTextView
99
id="textView1"
1010
height="200"
@@ -27,7 +27,7 @@
2727
</FormattedString>
2828
</MDTextView>
2929
<MDTextView id="textView2" editable="false" counterMaxLength="10" maxLength="10" hint="hint me" @textChange="onTextChange" @returnPress="onReturnPress" />
30-
<MDTextView id="textView3" placeholderColor="green" floatingColor="yellow" color="red" variant="outline" hint="text should be red" @textChange="onTextChange" v-model="value" @returnPress="onReturnPress" />
30+
<MDTextView id="textView3" placeholderColor="green" floatingColor="yellow" color="red" variant="outline" hint="text should be red" @textChange="onTextChange" v-model="value" @returnPress="onReturnPress" height="200" backgroundColor="blue"/>
3131
<MDTextView variant="filled" required="true" email="true" hint="fill this out..." @textChange="onTextChange" @returnPress="onReturnPress" />
3232
<MDTextView hint="fill this out..." />
3333
</StackLayout>

0 commit comments

Comments
 (0)