@nativescript-community/ui-material-progress
进度视图是一个线性进度指示器,实现了材料设计动画和布局。
npm i --save @nativescript-community/ui-material-progress

NativeScript 材料线性进度指示器

为 NativeScript 提供的 Material Design 线性进度指示器组件。

npm npm

内容

  1. 安装
  2. 变更日志
  3. 常见问题解答
  4. 用法
  5. API

安装

适用于 NativeScript 7.0+

  • tns plugin add @nativescript-community/ui-material-progress

适用于 NativeScript 6.x

  • tns plugin add nativescript-material-progress

如果使用 tns-core-modules

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

变更日志

常见问题解答

用法

纯 NativeScript

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

XML

<Page xmlns:mdp="@nativescript-community/ui-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-community/ui-material-progress/angular";

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

NativeScript + Vue

import ProgressPlugin from '@nativescript-community/ui-material-progress/vue';

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

API

属性

继承自 NativeScript Progress 组件,因此它已经具有所有相同的属性。

  • elevation 可选

设置进度条高度的属性。这将增加进度的 'drop-shadow'。

  • rippleColor 可选

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