nativescript-material-textview
Material 文本视图组件
npm i --save nativescript-material-textview

npm npm GitHub forks GitHub stars

安装

如果使用 @nativescript

  • tns plugin add nativescript-material-textview

如果使用 tns-core-modules

在添加插件后务必运行新的构建,以避免出现任何问题。


Material 设计规范

用法

原生 NativeScript

重要: 确保在 Page 元素中包含 xmlns:mdt="nativescript-material-textview"

XML

<Page xmlns:mdt="nativescript-material-textview">
<StackLayout horizontalAlignment="center">
<mdt:TextView text="raised textview"/>
<mdt:TextView variant="flat" text="flat textview"/>
<mdt:TextView variant="text" text="text textview"/>
<mdt:TextView elevation="5" rippleColor="red" text="raised custom textview"/>
</StackLayout>
</Page>

CSS

mdctextview {
ripple-color: blue;
elevation: 4;
stroke-color: blue; // the border color when active
stroke-inactive-color: green; // the border color when inactive
floating-color: blue; // the floating placeholder color when active
floating-inactive-color: green; // the floating placeholder color when inactive
}

NativeScript + Angular

import { NativeScriptMaterialTextViewModule } from "nativescript-material-textview/angular";

@NgModule({
imports: [
NativeScriptMaterialTextViewModule,
...
],
...
})
<MDTextView  helper="example helper" placeholderColor="green" keyboardType="datetime"
hint="i am an hint" returnKeyType="next" (focus)="onFocus($event)" (blur)="onBlur($event)"
(textChange)="onTextChange($event)">
</MDTextView>

NativeScript + Vue

import TextViewPlugin from 'nativescript-material-textview/vue';

Vue.use(TextViewPlugin);
<MDTextView helper="example helper" placeholderColor="green" keyboardType="datetime"
hint="i am an hint" returnKeyType="next" @focus="onFocus" @blur="onBlur"
@textChange="onTextChange"/>

此外,您还可以使用 v-model 指令将文本绑定到某些实例数据

<MDTextView v-model="value" />

属性

继承自 Nativescript TextView,因此它已经具有所有相同的属性

属性

  • variant 可选

用于设置文本视图变体的属性。可以是 outlineunderlinefilled。无值表示 underline 文本视图

  • errorColor 可选

用于设置文本视图错误颜色的属性。

  • helper 可选

用于设置文本视图辅助文本的属性。

  • floating 可选

用于设置文本视图浮动状态的布尔属性。