Skip to content

Commit 10d7f35

Browse files
committed
test: demo app update
1 parent ae41711 commit 10d7f35

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
ext {
2-
androidXMaterial = "1.2.1"
2+
androidXMaterial = "1.2.0"
33
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
platform :ios, '10.0'

demo-vue/app/examples/Buttons.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<Page backgroundColor="red">
2+
<Page>
33
<ActionBar :title="title">
44
<StackLayout orientation="horizontal" width="100%">
55
<MDButton v-show="isEditing" variant="flat" text="test" @tap="isEditing = !isEditing" />

demo-vue/app/examples/TextView.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<Span text="with " color="#ff0000" fontAttributes="Bold"></Span>
2727
</FormattedString>
2828
</MDTextView>
29-
<MDTextView id="textView2" editable="false" maxLength="10" hint="hint me" @textChange="onTextChange" @returnPress="onReturnPress" />
29+
<MDTextView id="textView2" editable="false" counterMaxLength="10" maxLength="10" hint="hint me" @textChange="onTextChange" @returnPress="onReturnPress" />
3030
<MDTextView id="textView3" variant="outline" hint="outline" @textChange="onTextChange" v-model="value" @returnPress="onReturnPress" />
3131
<MDTextView variant="filled" required="true" email="true" hint="fill this out..." @textChange="onTextChange" @returnPress="onReturnPress" />
3232
<MDTextView hint="fill this out..." />

demo/app/examples/textfields-fragment.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<mdct:TextField id="textField1" helper="help me!" width="250" backgroundColor="orange" placeholderColor="green" keyboardType="datetime"
55
hint="i am an hint" returnKeyType="next" focus="onFocus" blur="{{ onBlur }}"
66
textChange="{{ onTextChange }}"/>
7-
<mdct:TextField id="textField2" maxLength="10" hint="hint me" returnPress="{{ returnPress }}"/>
7+
<mdct:TextField id="textField2" counterMaxLength="10" hint="hint me" returnPress="{{ returnPress }}"/>
88
<mdct:TextField id="textField3" variant="outline" hint="outline"/>
99
<mdct:TextField variant="filled" required="true" email="true" hint="fill this out..."/>
1010
<TextField hint="fill this out..."/>

demo/app/examples/textviews-fragment.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
xmlns:mdct="@nativescript-community/ui-material-textview">
44
<mdct:TextView id="textView1" helper="help me!" width="250" backgroundColor="orange" placeholderColor="green"
55
hint="i am an hint"/>
6-
<mdct:TextView id="textView2" maxLength="10" hint="hint me"/>
6+
<mdct:TextView id="textView2" counterMaxLength="10" hint="hint me"/>
77
<mdct:TextView id="textView3" variant="outline" hint="outline"/>
88
<mdct:TextView variant="filled" required="true" email="true" hint="fill this out..."/>
99
<TextView hint="fill this out..."/>

0 commit comments

Comments
 (0)