NativeScript-Material-Progress
Material 进度组件
npm i --save nativescript-material-progress

npm npm GitHub forks GitHub stars

安装

如果使用 @nativescript

  • tns plugin add nativescript-material-progress

如果使用 tns-core-modules

确保在添加插件后运行新的构建,以避免任何问题。


Material Design 规范

用法

纯 NativeScript

重要:请确保在 Page 元素上包含 xmlns:mdp="nativescript-material-progress"

XML

<Page xmlns:mdp="nativescript-material-progress">
<StackLayout horizontalAlignment="center">
<mdp:Progress value="50" maxValue="100"/>
</StackLayout>
</Page>

CSS

mdprogress {
ripple-color: blue;
elevation: 4;
}

NativeScript + Angular

import { NativeScriptMaterialProgressModule } from "nativescript-material-progress/angular";

@NgModule({
imports: [
NativeScriptMaterialProgressModule,
...
],
...
})
<MDProgress v-model="value" maxValue="100"></MDProgress>

NativeScript + Vue

import ProgressPlugin from 'nativescript-material-progress/vue';

Vue.use(ProgressPlugin);
<MDProgress value="50" maxValue="100"></MDProgress>

属性

从 Nativescript Progress 继承,因此它已经有了所有相同的属性

属性

  • elevation 可选

用于设置进度条高度的属性。这将增加进度的“阴影”。

  • rippleColor 可选

用于设置进度条涟漪颜色的属性。